C#杂项

取文件短名称:

shortname= Path.GetFileNameWithoutExtension(filename);      无扩展名
shortname = filename.Substring(filename.LastIndexOf(‘\\‘) + 1);  有扩展名

 

取执行文件路径:

string appPath = System.IO.Path.GetDirectoryName(Application.ExecutablePath);
string filePath = "image\Star.jpg";


组合文件路径
filePath = System.IO.Path.Combine(appPath, filePath);

C#杂项

上一篇:阿里云 Windows Server 2012 密码过期设置


下一篇:C#中Base64转换为byte[]再进行处理