python读取文件名包含某字符的文件,Python - 无法重命名文件名中包含特殊字符的文件...

I have a bunch of mp3 files that somehow have a special character in the 0th index. So the file name looks like this - ▶ Alone Tonight - Radio Edit - Above & Beyond .mp3

I want to be able to fix this. In python, when I list the file, it shows up like this:

'? Alone Tonight - Radio Edit - Above & Beyond .mp3'

All I want to do is to rename this file with the substring defined by [2:len(filename)]

However, when I do this:

newfilename = filename[2:len(filename)]

os.rename(filename,newfilename)

I get

WindowsError: [Error 123] The filename, directory name, or volume

label syntax is incorrect

So what are my options? It looks like windows wont' recognize the special character. I am able to manually edit it, but not programmatically.

解决方案

You may have better luck using the unicode name for the file.

To obtain the unicode name, pass a unicode path to os.listdir.

for filename in os.listdir(u'/path/to/files'):

if filename.startswith(u'\u25b6'):

os.rename(filename, filename[2:])

Note that using unicode may not always be quite enough to specify the filename (you may have to normalize the unicode), since more than one unicode code point sequence can have the same appearance and meaning. (See unicode equivalence, and Ned Batchelder's blog post on the subject).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值