C#杂项
2021-01-24 12:14
标签:jpg star ima 扩展 system file 路径 cat get 取文件短名称: shortname= Path.GetFileNameWithoutExtension(filename); 无扩展名 取执行文件路径: string appPath = System.IO.Path.GetDirectoryName(Application.ExecutablePath); C#杂项 标签:jpg star ima 扩展 system file 路径 cat get 原文地址:https://www.cnblogs.com/wfy680/p/12047350.html
shortname = filename.Substring(filename.LastIndexOf(‘\\‘) + 1); 有扩展名
string filePath = "image\Star.jpg";
组合文件路径
filePath = System.IO.Path.Combine(appPath, filePath);
上一篇:C#异步编程看这篇就够了
下一篇:window 常用基本命令