我需要用c#创建一个文件夹,后面有点(.)。下面是我的代码:
System.IO.Directory.CreateDirectory("d:\MyCorp Inc.");
但是创建的文件夹没有最后的点。有解决办法吗?
我正在使用。net Framework 4.5/c#。我的文件系统是NTFS,在windows上。微软明确表示这是不应该做的事情:http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx
文件或目录名不能以空格或句号结尾。尽管底层文件系统可能支持这样的名称,但Windows shell和用户界面不支持。但是,指定句点作为名称的第一个字符是可以接受的。例如,".temp".
这不是。net的限制,而是Win32 API的限制。尝试在命令shell中创建一个:
c:drop>mkdir test.
c:drop>dir
Volume in drive C has no label.
Volume Serial Number is C0F3-338B
Directory of c:drop
2013-04-02 17:54 <DIR> .
2013-04-02 17:54 <DIR> ..
2013-04-02 17:54 <DIR> test
请参阅MSDN以获取命名建议。引用:
•文件或目录名不能以空格或句号结尾。尽管底层文件系统可能支持这样的名称,但是Windows shell和用户界面没有。然而,这是可以接受的指定句点作为名称的第一个字符。例如,".temp"。
如果你真的很坚持使用尾随点,使用\?C:path.
。
c:drop>mkdir \?c:droptest2.
c:drop>dir
Volume in drive C has no label.
Volume Serial Number is C0F3-338B
Directory of c:drop
2013-04-02 17:58 <DIR> .
2013-04-02 17:58 <DIR> ..
2013-04-02 17:54 <DIR> test
2013-04-02 17:58 <DIR> test2.
Edit:内容中列出的要求是不创建额外的文件,所以不要使用文件。您可以在目录上创建一个"name"流,并在其中存储数据。请看下面的例子:
c:drop>mkdir "Example Company Name"
c:drop>notepad "Example Company Name:name.txt"
c:drop>dir
Volume in drive C has no label.
Volume Serial Number is C0F3-338B
Directory of c:drop
2013-04-02 18:25 <DIR> .
2013-04-02 18:25 <DIR> ..
2013-04-02 18:25 <DIR> Example Company Name
0 File(s) 0 bytes
3 Dir(s) 77,336,379,392 bytes free
c:drop>dir "Example Company Name"
Volume in drive C has no label.
Volume Serial Number is C0F3-338B
Directory of c:dropExample Company Name
2013-04-02 18:25 <DIR> .
2013-04-02 18:25 <DIR> ..
0 File(s) 0 bytes
2 Dir(s) 77,336,313,856 bytes free
或者在。net中:
class Program
{
static void Main(string[] args)
{
string companyName = "Example Company?*, Inc.";
//Example Company Inc
var sanitizedName = sanitize(companyName);
//Create the directory
Directory.CreateDirectory(sanitizedName);
//Create the name store
var nameStreamPath = sanitizedName + ":Name";
writeFileContent(companyName, nameStreamPath);
//Try to return the name
Console.WriteLine(getFileContent(nameStreamPath));
Console.ReadLine();
}
private static string getFileContent(string path)
{
using (var sr = new StreamReader(new FileStream(
// we have to call CreateFile directly to avoid overzealous path validation
NativeMethods.CreateFileOrFail(path, false), FileAccess.Read)))
{
return sr.ReadToEnd();
}
}
private static void writeFileContent(string companyName, string path)
{
using (var sw = new StreamWriter(new FileStream(
// We have to call CreateFile directly to avoid overzealous path validation
NativeMethods.CreateFileOrFail(path, true), FileAccess.Write)))
{
sw.Write(companyName);
}
}
private static string sanitize(string path)
{
char[] newPath = new char[path.Length];
int newPathLoc = 0;
for (int i = 0; i < path.Length; i++)
{
if (char.IsLetter(path[i]) || char.IsDigit(path[i]))
{
newPath[newPathLoc] = path[i];
newPathLoc++;
}
}
return new string(newPath, 0, newPathLoc);
}
}
class NativeMethods
{
[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
private static extern SafeFileHandle CreateFile(
string fileName,
[MarshalAs(UnmanagedType.U4)] FileAccess fileAccess,
[MarshalAs(UnmanagedType.U4)] FileShare fileShare,
IntPtr securityAttributes,
[MarshalAs(UnmanagedType.U4)] FileMode creationDisposition,
[MarshalAs(UnmanagedType.U4)] FileAttributes flags,
IntPtr template);
public static SafeFileHandle CreateFileOrFail(string path, bool write)
{
var handle = CreateFile(path,
write ? FileAccess.Write : FileAccess.Read,
write ? FileShare.None : FileShare.Read,
IntPtr.Zero,
write ? FileMode.Create : FileMode.Open,
FileAttributes.Normal,
IntPtr.Zero);
if (handle.IsInvalid)
throw new System.ComponentModel.Win32Exception();
return handle;
}
}
尝试:
using System.Runtime.InteropServices;
class Program
{
[DllImport("kernel32.dll", SetLastError = true)]
public static extern bool CreateDirectory(string lpPathName, IntPtr lpSecurityAttributes);
private static void Main(string[] args)
{
CreateDirectory(@"\?c:tempMyCorp Inc.", IntPtr.Zero);
}
和参考不能删除NTFS文件系统卷上的文件或文件夹
更新:
我注意到了两件事!
1)您的要求:我有很多客户根据公司给他们的文件夹命名例如"Some Corp Ltd.",这些名称通常包含尾字符点。我不能存储名字在任何地方,我没有数据库和我不能创建额外的文件,这是必须的。
2)你没有答案
我的建议是在目录名的末尾添加一个额外的字符,它将被隐藏在普通视图中,但仍然存在!这让我们很开心!
试试这个
您必须在目录名的末尾附加一个特殊字符
System.IO.Directory.CreateDirectory
(@"D:Sync.inc." + (char)(128));
注意:(char) (128) (char)(158)可能有助于
试一试!
for (int i = 128; i <= 158; i++)
{
System.IO.Directory.CreateDirectory
(@"D:Sync.inc." + (char)(i));
}
无论如何,从MS:
如果点位于名称的末尾,Windows将忽略这个点。默认情况下,
看一下http://social.technet.microsoft.com/forums/en us/w7itproui/thread/84978c71 - 8203 - 404 - b - 94 - cf - b05b14be99db/
如果您尝试在Windows资源管理器中手动执行此操作,即使资源管理器不允许尾随点并为您删除它。
我想这是Windows本身的限制,因为末尾的句号通常表示文件扩展名。