import os import shutil from tkinter import Tk from tkinter.filedialog import askopenfilenames # Function to create a project folder def create_folder(folder_name): if not os.path.exists(folder_name): os.makedirs(folder_name) print(f"Folder '{folder_name}' created successfully.") else: print(f"Folder '{folder_name}' already exists.") # Function to upload files to the project folder def upload_files(destination_folder): Tk().withdraw() # Hide the root window files = askopenfilenames(title="Select files to upload") if files: for file_path in files: try: shutil.copy(file_path, destination_folder) print(f"Copied: {file_path}") except Exception as e: print(f"Error copying {file_path}: {e}") else: print("No files selected.") # Main function to create a folder and upload files def main(): folder_name = input("Enter project folder name: ") create_folder(folder_name) upload_files(folder_name) if __name__ == "__main__": main()
top of page

"Welcome to Hart's Digital Consulting, where we specialize in delivering exceptional digital marketing solutions tailored for small and medium-sized businesses. Our dedicated team of experts leverages cutting-edge technologies including artificial intelligence to craft targeted strategies that elevate your online presence and maximize ROI. Whether you're navigating digital challenges, seeking to enhance your social media engagement, or require comprehensive digital marketing campaigns, we provide customized solutions to meet your specific business needs. At Hart's Digital Consulting, we are committed to driving your success through innovative digital strategies and personalized consultation. Contact us today to discover how we can propel your business forward in the digital landscape."

​

​

Mission

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.

bottom of page