Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/truethari/fcrawler
Python application that can be used to copy files of a given file type from a folder directory.
https://github.com/truethari/fcrawler
copy copy-files crawl crawler crawler-python file files
Last synced: about 2 months ago
JSON representation
Python application that can be used to copy files of a given file type from a folder directory.
- Host: GitHub
- URL: https://github.com/truethari/fcrawler
- Owner: truethari
- License: mit
- Created: 2021-03-30T05:49:04.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-23T10:41:26.000Z (over 3 years ago)
- Last Synced: 2024-10-03T07:19:17.595Z (3 months ago)
- Topics: copy, copy-files, crawl, crawler, crawler-python, file, files
- Language: Python
- Homepage: https://pypi.org/project/fcrawler/
- Size: 49.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fcrawler
## Installation
You can use pip:
``` console
~$ pip3 install fcrawler
```This is a Python based application that can be used to copy files of a given file type from a folder directory.
## Option 1 - Copy files from a directory to another
![Option 1](https://i.imgur.com/vr0JxTy.gif)
This creates subfolders in the destination folder as the original folder subfolders.
(This only creates sub-folders containing the files you have entered)
## Option 2 - Copy files from a directory to another (without creating subfolders)
![Option 2](https://i.imgur.com/CrDDpNX.gif)
This will copy files from the original folder to the destination folder without creating subfolders. If it contains a large number of files, the destination folder may be cluttered.
## Option 3 - Copy files using a filelist
You can use a file list file to copy files. The list must be a txt file type.
Example - filelist.txt
``` txt
C:\testing\source\file.mp4
C:\testing\source\file2.mp4
C:\testing\source\file3.mp4
C:\testing\source\subfolder1\file4.mp4
C:\testing\source\subfolder1\file5.mp4
C:\testing\source\subfolder2\file6.mp4
```## Option 4 - Create filelist
If you want to make a list of files, use this method. Then you can use that file from the 3rd option.This will help you to skip unnecessary files. But how?
You can open and edit the text file. Just remove the unnecessary file paths from the text file. then use it.