Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 c# 开发一个应用程序,它会提示用户输入目录名称,然后在我计划托管网站的服务器上创建目录。如何才能做到这一点 ?我需要调查什么?
我会说你需要调查:
1)如何在C#中创建目录
2) 如何最好地授予运行 Web 应用程序的用户帐户执行文件系统操作的权限。
希望这可以帮助。
// Create the folder System.IO.Directory.CreateDirectory(path);
但是您需要确保您对服务器具有写入权限,因此您可能需要研究impersonation。