Windows 7, Windows 10, 和 Windows 11 中常見資料夾的預設路徑 我的文件 收藏夾 我的影片 我的音樂 我的圖片 桌面 歷史記錄 IE Cookie 最近文件 IE快取 下載 臨時檔案 儲存遊戲 連結 搜尋 聯絡人

suv789發表於2024-11-30

Windows 10Windows 11 中,您可以更改一些常見資料夾(如文件、音樂、照片、影片、電影和電視節目以及離線地圖)的預設儲存位置。以下是關於如何更改這些資料夾的預設路徑的表格,以及預設情況下資料夾的路徑資訊。

更改預設儲存位置的相關資料夾路徑

資料夾名稱 預設儲存路徑 (Windows 10/11) 更改後的儲存路徑
應用程式 C:\Program FilesC:\Program Files (x86) 可以在設定中更改儲存位置。
文件 C:\Users\<使用者名稱>\Documents 可更改為其他驅動器或資料夾,如 D:\Documents
音樂 C:\Users\<使用者名稱>\Music 可更改為其他驅動器或資料夾,如 D:\Music
圖片 C:\Users\<使用者名稱>\Pictures 可更改為其他驅動器或資料夾,如 D:\Pictures
影片 C:\Users\<使用者名稱>\Videos 可更改為其他驅動器或資料夾,如 D:\Videos
電影和電視節目 C:\Users\<使用者名稱>\Videos 可更改為其他驅動器或資料夾,如 D:\Movies
離線地圖 C:\ProgramData\Microsoft\Windows\Maps 可以在設定中更改儲存位置。

更改資料夾預設儲存位置的步驟

  1. 開啟設定:

    • Windows 10Windows 11 中,點選 開始選單,然後點選 設定(齒輪圖示)。
  2. 進入儲存設定:

    • Windows 10 中,選擇 系統 > 儲存
    • Windows 11 中,選擇 系統 > 儲存
  3. 更改儲存位置:

    • 在儲存設定中,點選 更改新內容的儲存位置
    • 在這個頁面中,您可以分別設定新檔案(文件、音樂、照片、影片等)的預設儲存位置。
    • 選擇您想要的驅動器或資料夾,並點選 應用
  4. 離線地圖位置:

    • 設定 中,選擇 應用 > 離線地圖
    • 您可以更改地圖的下載位置。

預設路徑

如果沒有更改,資料夾的預設路徑如下:

  • 應用程式C:\Program FilesC:\Program Files (x86)
  • 文件C:\Users\<使用者名稱>\Documents
  • 音樂C:\Users\<使用者名稱>\Music
  • 圖片C:\Users\<使用者名稱>\Pictures
  • 影片C:\Users\<使用者名稱>\Videos
  • 電影和電視節目C:\Users\<使用者名稱>\Videos
  • 離線地圖C:\ProgramData\Microsoft\Windows\Maps

如何將資料夾移至其他驅動器

例如,如果您想將文件、音樂等資料夾移至 D: 驅動器,您可以按照以下步驟操作:

  1. 開啟 設定
  2. 轉到 系統 > 儲存 > 更改新內容的儲存位置
  3. 新文件儲存位置 下,點選 選擇一個新位置,然後選擇 D: 驅動器或其他位置。

這些更改會使新的文件、音樂等資料夾自動儲存在新位置,而不會影響現有檔案。如果您希望將現有的資料夾遷移到新的位置,您可以手動複製檔案並更改資料夾的路徑。

使用 PowerShell 指令碼將使用者資料夾(如文件、音樂、圖片等)移動到另一個位置。以下是如何使用 PowerShell 指令碼將這些資料夾移動到其他驅動器(例如 D 盤)的示例程式碼。

1. 移動資料夾並更新路徑

示例:將“文件”資料夾從預設路徑移到 D 盤

以下 PowerShell 指令碼將會:

  • Documents 資料夾從預設路徑(C:\Users\<使用者名稱>\Documents)移動到新的位置(例如 D:\Documents)。
  • 更新登錄檔以確保作業系統知道資料夾的新位置。
powershellCopy Code
# 獲取當前使用者名稱
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name.Split("\")[1]

# 定義原始和目標資料夾路徑
$sourcePath = "C:\Users\$userName\Documents"
$destinationPath = "D:\Documents"

# 如果目標資料夾不存在,建立它
if (-Not (Test-Path -Path $destinationPath)) {
    New-Item -ItemType Directory -Path $destinationPath
}

# 移動資料夾內容
Move-Item -Path $sourcePath\* -Destination $destinationPath

# 更新登錄檔,告訴系統資料夾的新位置
$regKey = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
Set-ItemProperty -Path $regKey -Name "Personal" -Value "$destinationPath"

# 可選:重新啟動資源管理器,使更改生效
Stop-Process -Name explorer
Start-Process explorer

2. 解釋程式碼

  • $userName: 獲取當前登入使用者的使用者名稱。
  • $sourcePath: 定義預設的 Documents 資料夾路徑。
  • $destinationPath: 定義您希望將資料夾移動到的新路徑。
  • Move-Item: 將資料夾中的內容從源路徑移動到目標路徑。
  • Set-ItemProperty: 更新登錄檔中的使用者資料夾路徑(如文件資料夾的路徑),確保作業系統知道資料夾的新位置。
  • Stop-Process -Name explorerStart-Process explorer: 重新啟動資源管理器,以便立即生效。

3. 其他資料夾的移動

要移動其他資料夾(如音樂、圖片、影片等),您只需要將相應的路徑進行修改。以下是每個資料夾的預設路徑和相應的 PowerShell 命令:

音樂資料夾(Music)

powershellCopy Code
$sourcePath = "C:\Users\$userName\Music"
$destinationPath = "D:\Music"
Move-Item -Path $sourcePath\* -Destination $destinationPath
Set-ItemProperty -Path $regKey -Name "My Music" -Value "$destinationPath"

圖片資料夾(Pictures)

powershellCopy Code
$sourcePath = "C:\Users\$userName\Pictures"
$destinationPath = "D:\Pictures"
Move-Item -Path $sourcePath\* -Destination $destinationPath
Set-ItemProperty -Path $regKey -Name "My Pictures" -Value "$destinationPath"

影片資料夾(Videos)

powershellCopy Code
$sourcePath = "C:\Users\$userName\Videos"
$destinationPath = "D:\Videos"
Move-Item -Path $sourcePath\* -Destination $destinationPath
Set-ItemProperty -Path $regKey -Name "My Videos" -Value "$destinationPath"

電影和電視節目資料夾(Movies)

powershellCopy Code
$sourcePath = "C:\Users\$userName\Videos"
$destinationPath = "D:\Movies"
Move-Item -Path $sourcePath\* -Destination $destinationPath
Set-ItemProperty -Path $regKey -Name "My Movies" -Value "$destinationPath"

離線地圖(Offline Maps)

powershellCopy Code
$sourcePath = "C:\ProgramData\Microsoft\Windows\Maps"
$destinationPath = "D:\OfflineMaps"
Move-Item -Path $sourcePath\* -Destination $destinationPath
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Maps" -Name "OfflineMaps" -Value "$destinationPath"

注意事項

  • 許可權問題:有些資料夾(如 Program FilesProgramData)可能需要管理員許可權才能修改或移動。如果您要處理這些資料夾,建議使用管理員許可權執行 PowerShell。
  • 使用者特定的資料夾:確保您替換了指令碼中的 <使用者名稱> 部分為您當前使用的使用者名稱,或者使用 $userName 自動獲取。
  • 確保資料完整:在執行移動操作之前,強烈建議先備份資料夾中的內容,以防止任何資料丟失或操作失敗。

如何執行指令碼

  1. 開啟 PowerShell,右鍵選擇 "以管理員身份執行"。
  2. 將上面的指令碼貼上到 PowerShell 視窗中並執行。
  3. 按照需要調整資料夾路徑和驅動器。

透過 PowerShell 獲取當前路徑下的 Documents 資料夾的大小,可以使用以下指令碼。這個指令碼會計算 C:\Users\<使用者名稱>\Documents 資料夾的大小(包括所有子資料夾和檔案)。

PowerShell 指令碼:獲取資料夾大小

powershellCopy Code
# 獲取當前使用者名稱
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name.Split("\")[1]

# 定義 Documents 資料夾的路徑
$documentsPath = "C:\Users\$userName\Documents"

# 獲取資料夾大小
$folderSize = 0
Get-ChildItem -Path $documentsPath -Recurse | ForEach-Object {
    # 如果是檔案,累加檔案大小
    if ($_ -is [System.IO.FileInfo]) {
        $folderSize += $_.Length
    }
}

# 輸出資料夾大小(以 MB 為單位)
$folderSizeMB = [math]::Round($folderSize / 1MB, 2)
Write-Host "Documents 資料夾的大小為:$folderSizeMB MB"

解釋指令碼

  1. 獲取當前使用者名稱:指令碼透過 System.Security.Principal.WindowsIdentity 獲取當前登入的使用者名稱,並將其作為變數 $userName 儲存。
  2. 定義資料夾路徑:根據使用者名稱構建 Documents 資料夾的路徑(C:\Users\<使用者名稱>\Documents)。
  3. 獲取資料夾大小
    • 使用 Get-ChildItem 命令遞迴地獲取 Documents 資料夾中的所有檔案和子資料夾。
    • 對於每個檔案,累加檔案的大小($_.Length)。
  4. 轉換並輸出資料夾大小:將資料夾大小從位元組(Byte)轉換為 MB,並將其輸出到螢幕。

示例輸出

plaintextCopy Code
Documents 資料夾的大小為:124.56 MB

擴充套件:獲取其他資料夾大小

如果您想獲取其他資料夾(如 PicturesMusicDownloads 等)的大小,只需將 $documentsPath 的值替換為目標資料夾的路徑。例如:

  • 圖片資料夾(Pictures)

    powershellCopy Code
    $picturesPath = "C:\Users\$userName\Pictures"
  • 下載資料夾(Downloads)

    powershellCopy Code
    $downloadsPath = "C:\Users\$userName\Downloads"

然後使用相同的方法計算大小。

提示

  • 此指令碼會遞迴地檢查資料夾中的所有檔案,因此對於檔案數量較多的資料夾,執行時間可能會較長。
  • 可以透過修改單位(如 KB、GB 等)來調整輸出格式。

實現 PowerShell 指令碼,該指令碼首先計算 Documents 資料夾的大小,如果大小超過 1GB,則使用 robocopy 命令將其遷移到新位置,可以按照以下步驟進行:

指令碼概述

  1. 獲取資料夾大小:計算 Documents 資料夾的總大小。
  2. 判斷大小:如果 Documents 資料夾的大小超過 1GB,則執行遷移操作。
  3. 遷移資料夾:使用 robocopy 命令將資料夾內容遷移到新的位置。

PowerShell 指令碼

powershellCopy Code
# 獲取當前使用者名稱
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name.Split("\")[1]

# 定義 Documents 資料夾的路徑
$documentsPath = "C:\Users\$userName\Documents"

# 獲取資料夾大小
$folderSize = 0
Get-ChildItem -Path $documentsPath -Recurse | ForEach-Object {
    # 如果是檔案,累加檔案大小
    if ($_ -is [System.IO.FileInfo]) {
        $folderSize += $_.Length
    }
}

# 轉換資料夾大小為 GB
$folderSizeGB = [math]::Round($folderSize / 1GB, 2)

# 輸出資料夾大小
Write-Host "Documents 資料夾的大小為:$folderSizeGB GB"

# 如果資料夾大小超過 1GB,則使用 robocopy 遷移資料夾
if ($folderSizeGB -gt 1) {
    # 定義新的目標位置
    $newLocation = "D:\Documents"

    # 如果目標資料夾不存在,則建立它
    if (-Not (Test-Path -Path $newLocation)) {
        New-Item -ItemType Directory -Path $newLocation
    }

    # 使用 robocopy 遷移資料夾內容
    Write-Host "遷移 Documents 資料夾到新位置:$newLocation"
    robocopy $documentsPath $newLocation /E /Z /COPYALL /R:3 /W:5

    # 移動資料夾成功後,刪除原始檔夾(可選)
    # Remove-Item -Path $documentsPath -Recurse -Force

    # 更新登錄檔,修改預設資料夾位置
    $regKey = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
    Set-ItemProperty -Path $regKey -Name "Personal" -Value "$newLocation"

    # 可選:重新啟動資源管理器,使更改生效
    Stop-Process -Name explorer
    Start-Process explorer
} else {
    Write-Host "Documents 資料夾的大小沒有超過 1GB,跳過遷移。"
}

詳細步驟

  1. 獲取當前使用者名稱:我們使用 [System.Security.Principal.WindowsIdentity]::GetCurrent().Name.Split("\")[1] 獲取當前使用者的使用者名稱。
  2. 計算資料夾大小
    • 使用 Get-ChildItem -Recurse 遍歷 Documents 資料夾中的所有檔案。
    • 累加每個檔案的大小,最終得出資料夾總大小。
    • 將檔案大小從位元組轉換為 GB(使用 1GB = 1,073,741,824 位元組)。
  3. 判斷資料夾大小:如果資料夾大小大於 1GB,指令碼繼續執行遷移。
  4. 使用 robocopy 遷移資料夾
    • robocopy 是一個高效的檔案複製工具,它支援斷點續傳、複製檔案屬性等。這裡使用 /E 選項遞迴複製所有子資料夾,/Z 啟用可恢復模式,/COPYALL 複製所有檔案屬性,/R:3 重試次數為 3,/W:5 每次重試等待 5 秒。
  5. 更新登錄檔
    • 透過修改登錄檔的 User Shell Folders 鍵,更新 Documents 資料夾的新路徑。這一步是為了讓 Windows 知道新資料夾位置。
  6. 重新啟動資源管理器:為確保路徑更新生效,我們重啟 Windows 資源管理器。

其他說明

  • robocopy 引數

    • /E: 複製子目錄(包括空目錄)。
    • /Z: 啟用可恢復模式(斷點續傳)。
    • /COPYALL: 複製所有檔案屬性(包括時間戳、許可權等)。
    • /R:3: 重試 3 次(如果複製過程中發生錯誤)。
    • /W:5: 每次重試等待 5 秒。
  • 刪除原始檔夾(可選):在遷移完成後,您可以選擇刪除原始檔夾。取消註釋 Remove-Item -Path $documentsPath -Recurse -Force 即可啟用此功能。

示例輸出

plaintextCopy Code
Documents 資料夾的大小為:1.25 GB
遷移 Documents 資料夾到新位置:D:\Documents

注意事項

  • 管理員許可權:如果要修改登錄檔或移動系統資料夾,確保以管理員許可權執行 PowerShell。
  • 目標路徑:確保目標驅動器(例如 D 盤)有足夠的空間來存放移動的檔案。
  • 資料安全:在執行任何檔案操作前,建議先備份資料,避免丟失重要檔案。


Windows XP, Windows 7, Windows 10, 和 Windows 11 中常見資料夾的預設路徑對比。該表格包括了多個常見資料夾的預設路徑,幫助您瞭解不同版本的 Windows 系統中資料夾的儲存位置。

資料夾名稱 Windows XP 路徑 Windows 7 路徑 Windows 10 路徑 Windows 11 路徑
我的文件 C:\Documents and Settings\<使用者名稱>\My Documents C:\Users\<使用者名稱>\Documents C:\Users\<使用者名稱>\Documents C:\Users\<使用者名稱>\Documents
收藏夾 C:\Documents and Settings\<使用者名稱>\Favorites C:\Users\<使用者名稱>\Favorites C:\Users\<使用者名稱>\Favorites C:\Users\<使用者名稱>\Favorites
我的音樂 C:\Documents and Settings\<使用者名稱>\My Documents\My Music C:\Users\<使用者名稱>\Music C:\Users\<使用者名稱>\Music C:\Users\<使用者名稱>\Music
我的圖片 C:\Documents and Settings\<使用者名稱>\My Documents\My Pictures C:\Users\<使用者名稱>\Pictures C:\Users\<使用者名稱>\Pictures C:\Users\<使用者名稱>\Pictures
我的 影片 C:\Documents and Settings\<使用者名稱>\My Documents\My Videos C:\Users\<使用者名稱>\Videos C:\Users\<使用者名稱>\Videos C:\Users\<使用者名稱>\Videos
桌面 C:\Documents and Settings\<使用者名稱>\Desktop C:\Users\<使用者名稱>\Desktop C:\Users\<使用者名稱>\Desktop C:\Users\<使用者名稱>\Desktop
歷史記錄 C:\Documents and Settings\<使用者名稱>\Local Settings\History C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History
IE Cookie C:\Documents and Settings\<使用者名稱>\Local Settings\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies
最近文件 C:\Documents and Settings\<使用者名稱>\Recent C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent
IE 快取 C:\Documents and Settings\<使用者名稱>\Local Settings\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files
下載 C:\Documents and Settings\<使用者名稱>\My Documents\My Downloads C:\Users\<使用者名稱>\Downloads C:\Users\<使用者名稱>\Downloads C:\Users\<使用者名稱>\Downloads
臨時檔案 C:\Documents and Settings\<使用者名稱>\Local Settings\Temp C:\Users\<使用者名稱>\AppData\Local\Temp C:\Users\<使用者名稱>\AppData\Local\Temp C:\Users\<使用者名稱>\AppData\Local\Temp
儲存遊戲 C:\Documents and Settings\<使用者名稱>\Saved Games C:\Users\<使用者名稱>\Saved Games C:\Users\<使用者名稱>\Saved Games C:\Users\<使用者名稱>\Saved Games
連結 C:\Documents and Settings\<使用者名稱>\Links C:\Users\<使用者名稱>\Links C:\Users\<使用者名稱>\Links C:\Users\<使用者名稱>\Links
搜尋 C:\Documents and Settings\<使用者名稱>\Local Settings\Application Data\Microsoft\Windows\Search C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search
聯絡人 C:\Documents and Settings\<使用者名稱>\My Documents\Contacts C:\Users\<使用者名稱>\Contacts C:\Users\<使用者名稱>\Contacts C:\Users\<使用者名稱>\Contacts

說明:

  1. <使用者名稱>:指代當前登入使用者的名稱。
  2. AppDataLocal Settings 資料夾是隱藏的,可能需要在檔案資源管理器中啟用“顯示隱藏的檔案、資料夾和驅動器”選項才能看到。
  3. Windows XP 中的路徑使用的是 Documents and Settings 目錄,而 Windows 7、10、11 中使用的是 Users 目錄。
  4. Windows 7Windows 10Windows 11 中,資料夾的路徑通常保持一致,只是作業系統版本和介面有所不同。

這個表格列出了不同版本 Windows 中的資料夾路徑,可以幫助你在不同系統之間遷移或者查詢檔案時參考。


Windows 7, Windows 10, 和 Windows 11 中常見資料夾的預設路徑表格。需要注意的是,資料夾路徑在不同版本的 Windows 中有所不同,尤其是一些隱藏的系統資料夾。

資料夾名稱 Windows 7 路徑 Windows 10 路徑 Windows 11 路徑
我的文件 C:\Users\<使用者名稱>\Documents C:\Users\<使用者名稱>\Documents C:\Users\<使用者名稱>\Documents
收藏夾 C:\Users\<使用者名稱>\Favorites C:\Users\<使用者名稱>\Favorites C:\Users\<使用者名稱>\Favorites
我的音樂 C:\Users\<使用者名稱>\Music C:\Users\<使用者名稱>\Music C:\Users\<使用者名稱>\Music
我的圖片 C:\Users\<使用者名稱>\Pictures C:\Users\<使用者名稱>\Pictures C:\Users\<使用者名稱>\Pictures
我的 影片 C:\Users\<使用者名稱>\Videos C:\Users\<使用者名稱>\Videos C:\Users\<使用者名稱>\Videos
桌面 C:\Users\<使用者名稱>\Desktop C:\Users\<使用者名稱>\Desktop C:\Users\<使用者名稱>\Desktop
歷史記錄 C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History
IE Cookie C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies
最近文件 C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent
IE 快取 C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files
下載 C:\Users\<使用者名稱>\Downloads C:\Users\<使用者名稱>\Downloads C:\Users\<使用者名稱>\Downloads
臨時檔案 C:\Users\<使用者名稱>\AppData\Local\Temp C:\Users\<使用者名稱>\AppData\Local\Temp C:\Users\<使用者名稱>\AppData\Local\Temp
儲存遊戲 C:\Users\<使用者名稱>\Saved Games C:\Users\<使用者名稱>\Saved Games C:\Users\<使用者名稱>\Saved Games
連結 C:\Users\<使用者名稱>\Links C:\Users\<使用者名稱>\Links C:\Users\<使用者名稱>\Links
搜尋 C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search
聯絡人 C:\Users\<使用者名稱>\Contacts C:\Users\<使用者名稱>\Contacts C:\Users\<使用者名稱>\Contacts

說明:

  1. <使用者名稱>:指代當前登入使用者的名稱。
  2. AppData 資料夾是隱藏的,可能需要在檔案資源管理器中啟用“顯示隱藏的檔案、資料夾和驅動器”選項才能看到。
  3. 這些路徑在不同版本的 Windows 系統中大體一致,主要區別在於一些系統內部儲存位置的變化,尤其是使用者資料和快取資料夾。
  4. Windows 10 和 Windows 11 都使用了類似的資料夾結構,Windows 11 沒有較大變動,只是介面和使用者體驗有所改進。

在 Windows 作業系統中,系統會為使用者提供一些預設的資料夾,用於儲存個人資料和常用檔案。下面列出了這些資料夾的預設路徑,這些路徑可能會有所變化,具體取決於作業系統的版本和使用者配置,但大多數情況下是一樣的。

1. 我的文件

  • 路徑:C:\Users\<使用者名稱>\Documents

2. 收藏夾(已過時,指的是 Internet Explorer 的收藏夾)

  • 路徑:C:\Users\<使用者名稱>\Favorites

3. 我的音樂

  • 路徑:C:\Users\<使用者名稱>\Music

4. 我的圖片

  • 路徑:C:\Users\<使用者名稱>\Pictures

5. 我的 影片

  • 路徑:C:\Users\<使用者名稱>\Videos

6. 桌面

  • 路徑:C:\Users\<使用者名稱>\Desktop

7. 歷史記錄(IE 瀏覽器的歷史記錄)

  • 路徑:C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\History

8. IE Cookie(Internet Explorer 的 Cookie 儲存位置)

  • 路徑:C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\INetCookies

9. 最近文件

  • 路徑:C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Recent

10. IE 快取(Internet Explorer 的快取檔案)

  • 路徑:C:\Users\<使用者名稱>\AppData\Local\Microsoft\Windows\Temporary Internet Files

11. 下載

  • 路徑:C:\Users\<使用者名稱>\Downloads

12. 臨時檔案

  • 路徑:C:\Users\<使用者名稱>\AppData\Local\Temp

13. 儲存遊戲

  • 路徑:C:\Users\<使用者名稱>\Saved Games

14. 連結(即快捷方式儲存的目錄)

  • 路徑:C:\Users\<使用者名稱>\Links

15. 搜尋

  • 路徑:C:\Users\<使用者名稱>\AppData\Roaming\Microsoft\Windows\Search

16. 聯絡人

  • 路徑:C:\Users\<使用者名稱>\Contacts

注意:

  • <使用者名稱> 代表當前登入使用者的名稱。
  • 某些資料夾(如 AppData)是隱藏的,通常需要啟用顯示隱藏資料夾才能檢視它們。
  • 資料夾路徑可能因作業系統版本(如 Windows 7, 10, 11)而有所不同,特別是在使用者自定義資料夾位置的情況下。

相關文章