I have my code as follows -
#!/usr/bin/env python
import time, glob, os, sys
from datetime import date, timedelta
try:
dpath = sys.argv[1]+"/"
except:
print "usage: " + sys.argv[0] +" <dir_path_to_purge_files>"
sys.exit(1)
print dpath
day_minus_mtime = time.mktime(date.today().timetuple())
g = glob.glob(dpath+"*")
for f in g:
try:
if day_minus_mtime > os.path.getmtime(f):
os.remove(f)
print "Removed: "+f
except OSError, e:
print "Not able to Remove: "+f , e
I believe that os.remove(file) is equivalent to "rm file" in linux.
I would like to know the equivalent function for "rm -f file". Forcefully remove a file or Forcefully unlink the file path from directory.
Also the above code is trying to purge files older than today. I have a situation where the files are not deleted as it is "write-protected" due to the ownership. But when I use "rm -f" to the same file; it is getting deleted.
I think it is better to ask a question, even though it sounds stupid to yourselves
os.remove()even deletes files with all permission bits unset and belonging to a different user, i.e.os.remove()doesrm -ffor me. Please provide the full error message you get. – Sven Marnach Mar 4 '12 at 15:46os.remove/os.unlink(both are the same) do basically the same. If the file is not deleted do to ownership, then you cannot delete it usingrm -feither. If it's just a matter of permissions... then the only that matter are the permissions over the directory, not the file itself, as @SvenMarnach mentions. – Ricardo Cárdenes Mar 4 '12 at 15:51user@server:/path_to_scripts/Scripts$ /path_to_scripts/Scripts/purgedir.py /path_to_rep_temp/replicate/tmp /path_to_rep_temp/replicate/tmp Not able to Remove: /path_to_rep_temp/replicate/tmp/daf.fefl.20120304.2393.ddl [Errno 2] No such file or directory: '/path_to_rep_temp/replicate/tmp/daf.fefl.20120304095323.2393.20120304094623839.ddl' Not able to Remove: /path_to_rep_temp/replicate/tmp/daf.fefl.20120304.2393.ddl.noidx [Errno 2] No such file or directory: '/path_to_rep_temp/replicate/tmp/daf.fefl.20120304.2393.ddl.noidx'– aslamplr Mar 4 '12 at 15:59