This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
# Please change per your desire: | |
Source_File_Name = str(raw_input("input the text file name: ")) | |
Destination = str(raw_input("input the destination directory: ")) #c:\\Python27\\Test_Data" | |
Word_Count = int(raw_input("how many words should be read into each file: ")) # 10 | |
How_Many_Files = int(raw_input("how many files you want to generate: ")) #100 | |
Dir_Divider = int(raw_input("how many files per directory: ")) #25 | |
Destination_File_Prefix = str(raw_input("input future file prefix: ")) #"WaP_" |