码迷,mamicode.com
首页 > 其他好文 > 详细

将长文件名转换成短文件名

时间:2019-01-05 00:54:51      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:file   box   bubuko   http   pat   static   函数   技术   ips   

实现效果:

  技术分享图片

知识运用:

   系统API函数GetShortPathName

  [DllImport("Kernel32.dll")]
  private static extern Int16 GetShortPathName(string IpszLongPath,StringBuilder IpszShortPath,Int16 cchBuffer);

  技术分享图片

实现代码:

        [DllImport("Kernel32.dll")]
        private static extern Int16 GetShortPathName(string IpszLongPath,StringBuilder IpszShortPath,Int16 cchBuffer);
        private void button1_Click(object sender, EventArgs e)
        {
            if (OFDlog.ShowDialog() == DialogResult.OK)
            {
                textBox1.Text = OFDlog.FileName;
                string longName = textBox1.Text;
                StringBuilder shortName = new System.Text.StringBuilder(256);
                GetShortPathName(longName,shortName,256);
                string myInfo = "长文件名:" + longName;
                myInfo += "\n" + "短文件名:" + shortName;
                label2.Text = myInfo;
            }

  

将长文件名转换成短文件名

标签:file   box   bubuko   http   pat   static   函数   技术   ips   

原文地址:https://www.cnblogs.com/feiyucha/p/10223096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!