Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
43 views

Automatically locating a file

By default AutoCAD installs a text based file called acad2010.lsp at the set location below Dim FILE_NAME As String = "C:\Program Files\AutoCAD 2010\Support\acad2010.lsp" However it my be that the ...
1
vote
1answer
174 views

How can I use the system's context menu for files in a Java application?

I want to display results of a file search. I want to enable a context menu for a file selection, which will be the system's context menu. For example, if the user right-clicks a file in Windows - I ...
1
vote
2answers
578 views

How do you delete N files of X type from Y subfolders from a Windows batch file?

I'm trying to write a windows batch file that can delete files from subdirectories. I would rather not hard code the directory structure in, so I can use this process with other projects. I need to ...