Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6168553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:42:28+00:00 2026-05-23T22:42:28+00:00

I’m writing a python script that takes a file one at a time or

  • 0

I’m writing a python script that takes a file one at a time or recursively through folders and moves them to a new location. The script takes one parameter (the current path of the file). I want to be able to use the selected item in an explorer window as the variable.

I am making a contextual menu through the regedit files that is labeled “Send to Server”. I currently have the appropriate regedit files created and pointed to the location of the command python.exe “path\to\python\file.py

long story short, I want a contextual menu to pop up that says “Send to Server” when a file is right clicked and when executed uses the selected file’s or folder’s path as the only variable I need. So far I have come across tkFileDialog (not quite what I want) ctypes and win32 modules but I can’t quite figure out the last three modules or whether or not they will help

As a side note. I have created a python script that does this exact thing on mac osx. Much easier with macs ‘services’ feature.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T22:42:29+00:00Added an answer on May 23, 2026 at 10:42 pm

    If you put a shortcut to this script (written for Python 3) in the user’s “SendTo” folder (%USERPROFILE%\SendTo), it will pop up a directory dialog when selected from the right-click SendTo menu. The dialog works for network locations as well. When the script runs, the full path to the selected file/folder is in sys.argv[1]. Currently it just shows the selected destination path in a message box. You can change the extension to pyw if you don’t want a console.

    import os, sys
    from tkinter import Tk, filedialog
    from tkinter.messagebox import showinfo
    
    class Dialog:
    
        def __init__(self, path):
            self.path = path
            self.dst_path = ''
            self.root = root = Tk()
    
            root.iconify()
            root.after_idle(self.askdirectory)
            root.mainloop()
    
        def askdirectory(self):
            self.dst_path = filedialog.askdirectory(initialdir=self.path)
            showinfo('Selected Path', self.dst_path)
            self.root.destroy()
    
    if __name__ == '__main__':
        if len(sys.argv) > 1:
            path = sys.argv[1]
            if os.path.isfile(path):
                path = os.path.dirname(path)
    
            dialog = Dialog(path)
    
            #if dialog.dst_path: do_something(dialog.dst_path)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a French site that I want to parse, but am running into
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I want to count how many characters a certain string has in PHP, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.