我有一個創建文件的腳本,但我想查看該文件是否存在,以便將其移動到其他目錄。我遇到的問題是它在一個目錄級別看起來太高。Python向上移動一個目錄以檢查文件是否存在
防爆FILEIN = A/B/C/D及其在尋找d,而不是C
print directory + " go up one!!!"
os.path.dirname(os.path.dirname(directory)) # this specific line does nothing
if f.endswith("_edited.xml"):
print "true"
else:
print "false"
#shutil.copy2(f, aEdit)
如何設置變量'directory'? – sgrg