-1

我正在尝试遍历文件夹中的文件并检查字符串长度(文件名)是否> 70或< 70个字符,并且我想查看字符串是否包含'(1'或'(2'。这里是一些示例字符串。

Schedule RCL 09302009(1 of 2).txt
Schedule RCL 09302009(2 of 2).txt
Schedule RCL 09302010(1 of 2).txt
Schedule RCL 09302010(2 of 2).txt

这是我正在测试的代码。

path = 'C:\\Users\\ryans\\Downloads\\'
all_files = glob.glob(os.path.join(path, "*.txt"))

before = [
        'FFIEC CDR Call Schedule RC',
        'FFIEC CDR Call Schedule RCL'
        ]

after = [
        'FFIEC CDR Call Schedule RC0',
        'FFIEC CDR Call Schedule RCL'
        ]
 
for f in all_files: 
    for b, a in zip(before, after):
        if b in f:
            try:
                if len(f) < 70:
                    string = f[-13:]
                    os.rename(f, path + a + string)
            except:
                if len(f) > 70 & str('(1') in string:
                    string = f[-21:]
                    os.rename(f, path + a + '1' + string)
            else:
                if len(f) > 70 & str('(2') in string:
                    string = f[-21:]
                    os.rename(f, path + a + '2' + string)
            print('can not find file: ' + f)

当我运行代码时,我得到了这个错误。

Traceback (most recent call last):

  File "<ipython-input-15-5614012e41f2>", line 105, in <module>
    if len(f) > 70 & str('(2') in string:

TypeError: unsupported operand type(s) for &: 'int' and 'str'

我认为这与此有关:str('(1')

我用这个str()函数试过了,没有;我犯了同样的错误。我在这里想念什么?

4

1 回答 1

1

关键问题是&Python 中的位运算符。你想做一个布尔值,在 Python 中是and

该行应为:

if len(f) > 70 and str('(2') in string:

布尔运算符: https ://docs.python.org/3/reference/expressions.html#boolean-operations

位运算符: https ://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations

于 2021-01-07T23:54:56.400 回答