mirror of
https://github.com/kevinveenbirkenbach/bulk-string-replacer.git
synced 2024-11-01 01:53:11 +01:00
Solved bug
This commit is contained in:
parent
75cdf367b2
commit
5cbf98a926
@ -5,7 +5,7 @@ def replace_content(path, old_string, new_string, preview, verbose):
|
|||||||
with open(path, 'r', encoding='utf-8') as f:
|
with open(path, 'r', encoding='utf-8') as f:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
|
|
||||||
if old_string in content: # Prüfen, ob der alte String im Inhalt vorkommt
|
if old_string in content:
|
||||||
new_content = content.replace(old_string, new_string)
|
new_content = content.replace(old_string, new_string)
|
||||||
|
|
||||||
if verbose:
|
if verbose:
|
||||||
@ -16,6 +16,9 @@ def replace_content(path, old_string, new_string, preview, verbose):
|
|||||||
f.write(new_content)
|
f.write(new_content)
|
||||||
|
|
||||||
def process_directory(base_path, old_string, new_string, recursive, folder, files, content, preview, verbose, hidden):
|
def process_directory(base_path, old_string, new_string, recursive, folder, files, content, preview, verbose, hidden):
|
||||||
|
# Eine Liste, um die Pfade der umzubenennenden Ordner zu speichern
|
||||||
|
directories_to_rename = []
|
||||||
|
|
||||||
for root, dirs, filenames in os.walk(base_path):
|
for root, dirs, filenames in os.walk(base_path):
|
||||||
# Wenn "hidden" nicht gesetzt ist, versteckte Dateien/Ordner aus der Liste entfernen
|
# Wenn "hidden" nicht gesetzt ist, versteckte Dateien/Ordner aus der Liste entfernen
|
||||||
if not hidden:
|
if not hidden:
|
||||||
@ -36,19 +39,24 @@ def process_directory(base_path, old_string, new_string, recursive, folder, file
|
|||||||
if not preview:
|
if not preview:
|
||||||
os.rename(old_path, new_path)
|
os.rename(old_path, new_path)
|
||||||
|
|
||||||
|
# Pfade von zu ändernden Ordnern speichern
|
||||||
if folder:
|
if folder:
|
||||||
for d in dirs:
|
for d in dirs:
|
||||||
if old_string in d:
|
if old_string in d:
|
||||||
old_path = os.path.join(root, d)
|
old_path = os.path.join(root, d)
|
||||||
new_path = os.path.join(root, d.replace(old_string, new_string))
|
new_path = os.path.join(root, d.replace(old_string, new_string))
|
||||||
|
directories_to_rename.append((old_path, new_path))
|
||||||
|
|
||||||
|
if not recursive:
|
||||||
|
break
|
||||||
|
|
||||||
|
# Ordnernamen ändern nach dem os.walk() Durchlauf
|
||||||
|
for old_path, new_path in directories_to_rename:
|
||||||
if verbose:
|
if verbose:
|
||||||
print(f"Renaming directory from: {old_path} to: {new_path}")
|
print(f"Renaming directory from: {old_path} to: {new_path}")
|
||||||
if not preview:
|
if not preview:
|
||||||
os.rename(old_path, new_path)
|
os.rename(old_path, new_path)
|
||||||
|
|
||||||
if not recursive:
|
|
||||||
break
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(description="Replace strings in directories and files.")
|
parser = argparse.ArgumentParser(description="Replace strings in directories and files.")
|
||||||
parser.add_argument('path', help="Path in which replacements should be made.")
|
parser.add_argument('path', help="Path in which replacements should be made.")
|
||||||
|
Loading…
Reference in New Issue
Block a user