Skip to content
Snippets Groups Projects
Commit 2174935b authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Added a prep file. Added instructions for creating test_dir

parent 930d911e
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
import os
def create_testdir():
current_directory = os.getcwd()
final_directory = os.path.join(current_directory, r'test_dir')
if not os.path.exists(final_directory):
os.makedirs(final_directory)
def create_testfiles():
pass
if __name__=="__main__":
create_testdir()
create_testfiles()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment