ฉันจะรับไดเร็กทอรีผู้ใช้ปัจจุบันได้อย่างไร


101

ใช้สิ่งนี้:

Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)

ฉันได้รับผลลัพธ์นี้:

"C:\\Documents and Settings\\[USER]\\Application Data"

ฉันจะรับไดเรกทอรีรากของผู้ใช้ทั้งหมดได้อย่างไร กล่าวคือ:

"C:\\Documents and Settings\\[USER]\\"

1
คำตอบที่ฉันสิ้นสุดที่ใช้ถูกลบ ... งานนี้: Path.GetDirectoryName (Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData))

2
ฮวน - นั่นไม่ได้ผลสำหรับคุณเสมอไปครั้งนี้คุณโชคดี
Scott Ivey

ทำไมเป็นอย่างนั้น? คุณหมายถึงเหมือนใน vista? หรือใน xp มันจะหยุดทำงานกะทันหัน?

5
ดูความคิดเห็นของ Scott ในคำตอบของ Jay Riggs ใน W7 และ Vista โฟลเดอร์ข้อมูลแอปพลิเคชันอยู่ในที่อื่นดังนั้นคุณจะต้องขึ้น 2 ไดเรกทอรีแทนที่จะเป็น 1.
Thomas

คำตอบ:


50

นี่อาจเป็นทางออกที่ดี: โดยคำนึงว่านี่คือ Vista / Win7 หรือ XP และไม่ใช้ตัวแปรสภาพแวดล้อม:

string path = Directory.GetParent(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)).FullName;
if ( Environment.OSVersion.Version.Major >= 6 ) {
    path = Directory.GetParent(path).ToString();
}

แม้ว่าการใช้ตัวแปรสภาพแวดล้อมจะชัดเจนกว่ามาก


167

ลอง:

System.Environment.GetEnvironmentVariable("USERPROFILE");

แก้ไข:

หากเวอร์ชันของ. NET ที่คุณใช้คือ 4 หรือสูงกว่าคุณสามารถใช้การEnvironment.SpecialFolderแจงนับ:

Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);

16
เป็นความคิดที่ไม่ดีจริงๆที่จะขึ้นอยู่กับตัวแปรสภาพแวดล้อมเพื่อให้เส้นทางโฟลเดอร์แก่คุณ ตัวแปรสภาพแวดล้อมเหล่านั้นสามารถเปลี่ยนแปลงได้หลายวิธีมากเกินไป วิธีที่แนะนำคือการแจงนับ Environment.SpecialFolder
Jim Mischel

1
ขออภัยอย่างที่คุณเห็นmsdn.microsoft.com/en-us/library/…โฟลเดอร์ USERPROFILE ไม่มีอยู่ในการแจงนับนั้น
โทมัส

Environment.SpecialFolder รวมอยู่ใน. NET 1.1 แต่ไม่มีโฟลเดอร์ "UserProfile" ...
Vini

@JimMischel แต่สิ่งเหล่านั้นไม่สามารถเปลี่ยนแปลงได้? และถ้าคุณอ้างอิงกับตัวแปรสภาพแวดล้อมเสมอคุณก็สบายดี
เนท - วิลกินส์


12

นอกจากนี้ยังมีประโยชน์มากในขณะที่ตรวจสอบEnvironment.SpecialFolderenum ใช้ LINQPad หรือสร้างโซลูชันและรันโค้ดนี้:

Enum.GetValues(typeof(Environment.SpecialFolder))
    .Cast<Environment.SpecialFolder>()
    .Select(specialFolder => new
    {
        Name = specialFolder.ToString(),
        Path = Environment.GetFolderPath(specialFolder)
    })
    .OrderBy(item => item.Path.ToLower())

เส้นทางโฟลเดอร์

นี่คือผลลัพธ์ในเครื่องของฉัน:

MyComputer
LocalizedResources
CommonOemLinks
ProgramFiles            C:\Program Files (x86) 
ProgramFilesX86         C:\Program Files (x86) 
CommonProgramFiles      C:\Program Files (x86)\Common Files 
CommonProgramFilesX86   C:\Program Files (x86)\Common Files 
CommonApplicationData   C:\ProgramData 
CommonStartMenu         C:\ProgramData\Microsoft\Windows\Start Menu 
CommonPrograms          C:\ProgramData\Microsoft\Windows\Start Menu\Programs 
CommonAdminTools        C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools 
CommonStartup           C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup 
CommonTemplates         C:\ProgramData\Microsoft\Windows\Templates 
UserProfile             C:\Users\fisch 
LocalApplicationData    C:\Users\fisch\AppData\Local 
CDBurning               C:\Users\fisch\AppData\Local\Microsoft\Windows\Burn\Burn 
History                 C:\Users\fisch\AppData\Local\Microsoft\Windows\History 
InternetCache           C:\Users\fisch\AppData\Local\Microsoft\Windows\INetCache 
Cookies                 C:\Users\fisch\AppData\Local\Microsoft\Windows\INetCookies 
ApplicationData         C:\Users\fisch\AppData\Roaming 
NetworkShortcuts        C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Network Shortcuts 
PrinterShortcuts        C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Printer Shortcuts 
Recent                  C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Recent 
SendTo                  C:\Users\fisch\AppData\Roaming\Microsoft\Windows\SendTo 
StartMenu               C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Start Menu 
Programs                C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Start Menu\Programs 
AdminTools              C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools 
Startup                 C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 
Templates               C:\Users\fisch\AppData\Roaming\Microsoft\Windows\Templates 
Desktop                 C:\Users\fisch\Desktop 
DesktopDirectory        C:\Users\fisch\Desktop 
Favorites               C:\Users\fisch\Favorites 
MyMusic                 C:\Users\fisch\Music 
MyDocuments             C:\Users\fisch\OneDrive\Documents 
MyDocuments             C:\Users\fisch\OneDrive\Documents 
MyPictures              C:\Users\fisch\OneDrive\Pictures 
MyVideos                C:\Users\fisch\Videos 
CommonDesktopDirectory  C:\Users\Public\Desktop 
CommonDocuments         C:\Users\Public\Documents 
CommonMusic             C:\Users\Public\Music 
CommonPictures          C:\Users\Public\Pictures 
CommonVideos            C:\Users\Public\Videos 
Windows                 C:\Windows 
Fonts                   C:\Windows\Fonts 
Resources               C:\Windows\resources 
System                  C:\Windows\system32 
SystemX86               C:\Windows\SysWoW64 

("fisch" คือตัวอักษร 5 ตัวแรกของนามสกุลของฉันนี่คือชื่อผู้ใช้ที่กำหนดเมื่อลงชื่อเข้าใช้ด้วยบัญชี Microsoft)


ฉันไม่รู้ว่าฉันไม่เคยได้ยิน LINQPad มาก่อนลองดูสิ่งนี้ดีมากขอบคุณที่แนะนำ
TravisO

4
Environment.GetEnvironmentVariable("userprofile")

การพยายามนำทางขึ้นจาก SpecialFolder ที่มีชื่อมีแนวโน้มที่จะเกิดปัญหา มีเหตุผลมากมายที่โฟลเดอร์จะไม่อยู่ในที่ที่คุณคาดหวัง - ผู้ใช้สามารถย้ายได้ด้วยตัวเอง GPO สามารถย้ายโฟลเดอร์การเปลี่ยนเส้นทางไปยังเส้นทาง UNC เป็นต้น

การใช้ตัวแปรสภาพแวดล้อมสำหรับโปรไฟล์ผู้ใช้ควรสะท้อนถึงปัญหาที่เป็นไปได้เหล่านั้น


3

ลอง:

System.IO.Directory.GetParent(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)).FullName/

1
สิ่งนี้จะใช้ไม่ได้กับ Windows 7 และฉันคิดว่าจะไม่ทำงานบน vista ถ้าฉันจำโครงสร้างโฟลเดอร์ได้ถูกต้อง ในวันที่ 7 คุณต้องเพิ่มโฟลเดอร์หลัก 2 โฟลเดอร์เนื่องจากโฟลเดอร์ ApplicationData คือ \% userprofile% \ AppData \ Roaming \
Scott Ivey

ที่ส่งคืน "C: \ Users \ Fredrik \ AppData" บนเครื่อง Vista ของฉัน (โฟลเดอร์ ApplicationData คือ "C: \ Users \ Fredrik \ AppData \ Roaming")
Fredrik Mörk

2

การยุ่งกับตัวแปรสภาพแวดล้อมหรือการชดเชยโฟลเดอร์แม่แบบฮาร์ดโค้ดไม่ใช่ความคิดที่ดีเมื่อมี API เพื่อรับข้อมูลที่คุณต้องการโทร SHGetSpecialFolderPath(...,CSIDL_PROFILE,...)


-3
$env:USERPROFILE = "C:\\Documents and Settings\\[USER]\\"

ดูความคิดเห็นเกี่ยวกับคำถาม นี่ไม่ใช่กรณีสำหรับ Windows ทุกเวอร์ชัน
Wai Ha Lee

-3

คุณสามารถใช้รหัสต่อไปนี้:

if(Platform.Equals("WinCE"))
{
    m_CurrentPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);
}
else if(Platform.Equals("Win32NT"))
{
    m_CurrentPath = Directory.GetCurrentDirectory();
}

ข้อมูลเพิ่มเติมดู: รับเส้นทางไดเรกทอรีปัจจุบันทั้งใน WinXP และ WinCE ด้วย C #


3
นี่มันไม่อยู่ที่นี่เลย OP กำลังขอโฟลเดอร์ผู้ใช้ปัจจุบันไม่ใช่โฟลเดอร์ที่ใช้งานได้
julealgon
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.