If CF_HDROP is not specified as a loaded file typeso that's what I was assuming.
Nevermind though, I guess it can't be done.
How are these items getting on to the clipboard? Are you talking about, eg. hitting Ctrl+C on an image file in the filesystem? Or otherwise?
Right click, then copy.
I guess it can't be done
import java.io.File;
import java.io.IOException;
public class TestTemporaryInternetFileRetrieval {
public static void main(String[] args) throws IOException {
File file1 = new File("C:\\Documents and Settings\\XXXXX\\Local Settings\\test.txt");
File file2 = new File("C:\\Documents and Settings\\XXXXX\\Local Settings\\Temporary Internet Files\\blank.gif");
System.out.println("file1 exists: " + file1.exists() + " (" + file1.getAbsolutePath() + ")");
System.out.println("file2 exists: " + file2.exists() + " (" + file2.getAbsolutePath() + ")");
}
}