Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
copy testfile.txt \\\\IP_ADDR\\FOLDER
コマンドラインで動作しますが:
os.system("copy testfile.txt \\\\IP_ADDR\\FOLDER")
どういうわけか動作しません。何か案は?
の代わりがありますがos.system、なぜこれがうまくいかないのですか?
os.system
バックスラッシュを2倍にするか、文字列の前に「r」を配置する必要があると思います:
os.system("copy testfile.txt \\\\\\\\IP_ADDR\\\\FOLDER") os.system(r"copy testfile.txt \\\\IP_ADDR\\FOLDER")