Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Nov 24th, 2006, 7:14 AM   #1
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 4 Arevos is on a distinguished road
File list to clipboard

Python and Windows users may be interested in a small application I created to help me write technical documents. I found myself needing to place directory listings into a Word document, and, getting bored of redirecting dir in a command window, I wrote a small Python application and put a shortcut to it in my sendto menu:
python Syntax (Toggle Plain Text)
  1. import sys, os, win32clipboard, win32con
  2. files = os.listdir(sys.argv[1])
  3. files.sort()
  4. win32clipboard.OpenClipboard()
  5. win32clipboard.EmptyClipboard()
  6. win32clipboard.SetClipboardText(os.linesep.join(files))
  7. win32clipboard.CloseClipboard()
To put it into my sendto menu (C:\Documents and Settings\{username}\SendTo), I create a shortcut to it, and altered the target to:
C:\Python25\pythonw.exe "C:\Path\To\filelisttoclipboard.pyw"
Note that for this to run you must have Python, and the win32 Python library installed.
Arevos is offline   Reply With Quote
Old Dec 2nd, 2006, 11:24 AM   #2
Dietrich
Professional Programmer
 
Dietrich's Avatar
 
Join Date: Feb 2005
Posts: 434
Rep Power: 4 Dietrich is on a distinguished road
Smile

Thanks Arevos, it works nicely!
__________________
I looked it up on the Intergnats!
Dietrich is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
converting string to float beginnerCCC C 22 Oct 2nd, 2006 11:59 PM
OnlineTextEditor.Com! Sane Show Off Your Open Source Projects 43 Jun 16th, 2006 8:55 AM
dev c++ software, template problem cairo C++ 11 Jun 2nd, 2006 12:42 PM
After execution - Error cannot locate /Skin File? wchar Visual Basic 1 Mar 5th, 2005 9:04 PM
airport Log program using 3D linked List : problem reading from file gemini_shooter C++ 0 Mar 2nd, 2005 4:12 PM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:14 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC