Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hope you all know about Dropbox. In Dropbox, we can drag the files to drop box folder then it will be stored in the cloud. I need to do this manual process (Drag and drop to the Dropbox folder) through a script. The script must allow the same task once the user defined the file extensions. In other words, drag and drop to the Dropbox folder must be an automatic process through a script once the user define the file types (extensions).

How can I achieve this? Note: I'm using java to get job done.

All comments are welcome.

share|improve this question

2 Answers

File f = new File(myDirString);
File[] files = f.listFiles();
foreach (File aFile in files)
    if (someRegex.match(aFile.getName())
        // use FileWriter to copy contents of file to a new file in Dropbox directory

This is a broken down example (brain compiled so I might have messed something up) but its hopefully enough to get you started

share|improve this answer

use a script to move/copy the desired file into your dropbox directory? Java has a filesystem API i believe.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.