2006-11-19から1日間の記事一覧

remove_all()

ファイル/ディレクトリを再帰的に削除する関数remove_all()を追加しました。 operations.hppの差分 Boost.Filesystemにもありますが、こちらはWindowsのリパースポイントに対応しています。 久々にテストも追加しました。 remove_all_test.cpp status_test.c…

シンボリックリンクのターゲットを消す方法

DeleteFile If the path points to a symbolic link, the symbolic link is deleted, not the target. To delete a target, you must call CreateFile and specify FILE_FLAG_DELETE_ON_CLOSE. なるほど。 ターゲットを消したい状況が思いつきませんけど。