Question

'''use Jython'''

import shutil

print dir(shutil)

There is no, shutil.move, how does one move a file with Jython? and while we at it, how does one delete a file with Jython?

Was it helpful?

Solution

os.rename() to move, and os.unlink() to delete -- just like Python pre-shutil.

OTHER TIPS

If you need support for moving across filesystems, consider just copying CPython's shutil.py into your project. The Python License is flexible enough to allow this (even for commercial projects), as long as licensing and attribution information are retained.

f1 = File(filename_old)
f1.nameTo(File(filename_new))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top