JS文件名和路径截取分割

举报
liuzhen007 发表于 2021/05/27 18:25:09 2021/05/27
【摘要】 常用方法有两种 以/Users/lz/project/test.txt为例分别介绍一下 方法一、 fullPath = '/Users/lz/project/test.txt';pos = fullPath.lastIndexOf('/');fileName = fullPath.substr(pos+1);console.log(fileName);filePath ...

常用方法有两种

以/Users/lz/project/test.txt为例分别介绍一下

方法一、


  
  1. fullPath = '/Users/lz/project/test.txt';
  2. pos = fullPath.lastIndexOf('/');
  3. fileName = fullPath.substr(pos+1);
  4. console.log(fileName);
  5. filePath = fullPath.substr(0,pos);
  6. console.log(filePath);

但是这种方法有一个缺点是,如果遇到windows路径字符串就会一脸蒙圈,需要区分平台类型采取不同的编码策略,比如:


  
  1. // windows平台路径
  2. fullPath = 'C:\\project\\test.txt';
  3. pos = fullPath.lastIndexOf('\\');
  4. fileName = fullPath.substr(pos+1);
  5. console.log(fileName);
  6. filePath = fullPath.substr(0,pos);
  7. console.log(filePath);

这样处理的话就需要知道平台类型,有没有可以不需要判断平台类型的方法呢?答案是有的。我们在只需要在操作之前就行格式化处理。 


  
  1. // 自己声明一个replaceAll方法
  2. String.prototype.replaceAll = function(s1, s2) {
  3. return this.replace(new RegExp(s1, "gm"), s2);
  4. }
  5. fullPath = '/Users/lz/project/test.txt';
  6. fileName = 'test.txt';
  7. fullPath = fullPath.replaceAll('/', '\\');
  8. console.log(fullPath);
  9. pos = fullPath.lastIndexOf('\\');
  10. fileName = fullPath.substr(pos+1);
  11. console.log(fileName);
  12. filePath = fullPath.substr(0,pos);
  13. console.log(filePath);

方法二、

如果你已经知道文件名,那就更好办了。


  
  1. fullPathMac = '/Users/lz/project/test.txt';
  2. fullPathWin = 'C:\\project\\test.txt';
  3. fileName = 'test.txt';
  4. filePath = fullPathMac.replace(fileName, '');
  5. console.log(filePath);
  6. filePath = fullPathWin.replace(fileName, '');
  7. console.log(filePath);

 

文章来源: liuzhen.blog.csdn.net,作者:Data-Mining,版权归原作者所有,如需转载,请联系作者。

原文链接:liuzhen.blog.csdn.net/article/details/106005657

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。