入力ファイルを取得して、コンピューターの新しいフォルダーに保存しようとしていますが、正しく行う方法がわかりません。
これが私が試したコードです:
from os.path import join as pjoin
a = raw_input("File Name: ")
filepath = "C:\Documents and Settings\User\My Documents\'a'"
fout = open(filepath, "w")
path_to_file = pjoin("C:\Documents and Settings User\My Documents\Dropbox",'a')
FILE = open(path_to_file, "w")
実行すると、\
各サブディレクトリの間に 1 つではなく 2 つが挿入され、既存のファイルまたはディレクトリではないことがわかります。
これを行う簡単な方法があると確信しています。助けてください。