0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

windows11でディレクトリが「権限がありません」で削除できない人へ。

Posted at

pythonコードを用意しました。
実行して、ディレクトリをターミナルに
ドラッグアンドドロップしてエンター押せば消せます。

(問題が発生しても責任は負いませんっ)

import subprocess
import os

def delete_directory(delete_dir_path):
    try:
        # takeown コマンドで所有権を取得
        subprocess.run(["takeown", "/F", delete_dir_path, "/R", "/D", "Y"], check=True, shell=True)
        
        # icacls コマンドでフルアクセスを許可
        subprocess.run(["icacls", delete_dir_path, "/grant", f"{os.getlogin()}:F", "/T"], check=True, shell=True)
        
        # rmdir コマンドでフォルダを削除
        subprocess.run(["rmdir", "/S", "/Q", delete_dir_path], check=True, shell=True)
        
        print(f"フォルダ '{delete_dir_path}' を正常に削除しました。")
    
    except subprocess.CalledProcessError as e:
        print(f"エラー: コマンドの実行に失敗しました。\n{e}")
    except Exception as e:
        print(f"予期しないエラーが発生しました: {e}")

if __name__ == "__main__":
    # ユーザーから削除したいパスを取得
    delete_dir_path = input("削除したいフォルダのパスを入力してください: ").strip()
    
    if os.path.exists(delete_dir_path):
        delete_directory(delete_dir_path)
    else:
        print("指定されたパスは存在しません。")

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?