app.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# Importing necessary packages import shutil import tkinter as tk from tkinter import * from tkinter import messagebox, filedialog # Defining CreateWidgets() function to # create necessary tkinter widgets def CreateWidgets(): link_Label = Label(root, text ="Select The File To Copy : ", bg = "#E8D579") link_Label.grid(row = 1, column = 0, pady = 5, padx = 5) root.sourceText = Entry(root, width = 50, textvariable = sourceLocation) root.sourceText.grid(row = 1, column = 1, pady = 5, padx = 5, columnspan = 2) source_browseButton = Button(root, text ="Browse", command = SourceBrowse, width = 15) source_browseButton.grid(row = 1, column = 3, pady = 5, padx = 5) destinationLabel = Label(root, text ="Select The Destination : ", bg ="#E8D579") destinationLabel.grid(row = 2, column = 0, pady = 5, padx = 5) root.destinationText = Entry(root, width = 50, textvariable = destinationLocation) root.destinationText.grid(row = 2, column = 1, pady = 5, padx = 5, columnspan = 2) dest_browseButton = Button(root, text ="Browse", command = DestinationBrowse, width = 15) dest_browseButton.grid(row = 2, column = 3, pady = 5, padx = 5) copyButton = Button(root, text ="Copy File", command = CopyFile, width = 15) copyButton.grid(row = 3, column = 1, pady = 5, padx = 5) moveButton = Button(root, text ="Move File", command = MoveFile, width = 15) moveButton.grid(row = 3, column = 2, pady = 5, padx = 5) def SourceBrowse(): # Opening the file-dialog directory prompting # the user to select files to copy using # filedialog.askopenfilenames() method. Setting # initialdir argument is optional Since multiple # files may be selected, converting the selection # to list using list() root.files_list = list(filedialog.askopenfilenames(initialdir ="C:/Users/AKASH / Desktop / Lockdown Certificate / Geek For Geek")) # Displaying the selected files in the root.sourceText # Entry using root.sourceText.insert() root.sourceText.insert('1', root.files_list) def DestinationBrowse(): # Opening the file-dialog directory prompting # the user to select destination folder to # which files are to be copied using the # filedialog.askopendirectory() method. # Setting initialdir argument is optional destinationdirectory = filedialog.askdirectory(initialdir ="C:/Users/AKASH / Desktop / Lockdown Certificate / Geek For Geek") # Displaying the selected directory in the # root.destinationText Entry using # root.destinationText.insert() root.destinationText.insert('1', destinationdirectory) def CopyFile(): # Retrieving the source file selected by the # user in the SourceBrowse() and storing it in a # variable named files_list files_list = root.files_list # Retrieving the destination location from the # textvariable using destinationLocation.get() and # storing in destination_location destination_location = destinationLocation.get() # Looping through the files present in the list for f in files_list: # Copying the file to the destination using # the copy() of shutil module copy take the # source file and the destination folder as # the arguments shutil.copy(f, destination_location) messagebox.showinfo("SUCCESSFUL") def MoveFile(): # Retrieving the source file selected by the # user in the SourceBrowse() and storing it in a # variable named files_list''' files_list = root.files_list # Retrieving the destination location from the # textvariable using destinationLocation.get() and # storing in destination_location destination_location = destinationLocation.get() # Looping through the files present in the list for f in files_list: # Moving the file to the destination using # the move() of shutil module copy take the # source file and the destination folder as # the arguments shutil.move(f, destination_location) messagebox.showinfo("SUCCESSFUL") # Creating object of tk class root = tk.Tk() # Setting the title and background color # disabling the resizing property root.geometry("830x120") root.title("Copy-Move GUI") root.config(background = "black") # Creating tkinter variable sourceLocation = StringVar() destinationLocation = StringVar() # Calling the CreateWidgets() function CreateWidgets() # Defining infinite loop root.mainloop() |