なすべきこと
home=os.path.expanduser("~")
最初に実行し、次に実行する必要がありos.path.join(home,"something")
ます。~
Pythonでテキストとして扱われ、それがでないように展開しませんbash
か他のシェル。
$ python -c 'import os;home=os.path.expanduser("~"); os.mkdir(os.path.join(home,"something"))'
$ ls -ld ~/something
drwxrwxr-x 2 xieerqi xieerqi 4096 7月 12 21:00 /home/xieerqi/something/
それを取り除く方法
既に述べた方法に加えて、~
文字のasciiテーブルから16進値を使用できます。これは、実際と~
は異なり、コマンドラインでユーザーのホームディレクトリに展開されません(疑問に思う場合は、つまり、ユーザーのホームディレクトリに展開されます。比較ls ~
とls $'\x7e'
)。
仕組みは次のとおりです。
# Make the directory
$ mkdir ./~
$ stat ./$'\x7e'
File: './~'
Size: 4096 Blocks: 8 IO Block: 4096 directory
Device: 801h/2049d Inode: 5768019 Links: 2
Access: (0775/drwxrwxr-x) Uid: ( 1000/ xieerqi) Gid: ( 1000/ xieerqi)
Access: 2017-07-12 21:05:31.382828424 -0600
Modify: 2017-07-12 21:05:31.382828424 -0600
Change: 2017-07-12 21:05:31.382828424 -0600
Birth: -
# and remove it
$ rmdir ./$'\x7e'
$ ls $'\x7e'
ls: cannot access '~': No such file or directory