Tagged Questions
The long-filenames tag has no wiki summary.
14
votes
5answers
2k views
How do I create then use long Windows paths from Perl?
I have part of a build process that creates a hideously long path in Windows. It's not my fault. It's several directories deep, and none of the directory names are abnormally long; they're just long ...
5
votes
3answers
104 views
How to get long filename from ARGV
I want to make a tool that takes as parameter some filenames but when i use
ARGV.each do|a|
puts "Argument: #{a}"
end
and I use drag and drop or "send to" in windows I get the short filename
so ...
4
votes
2answers
259 views
How do I unmangle Windows filenames in Java?
From Java, I'm extracting an executable into a location specified using File.createTempFile(). When I try to run my executable, my program hangs when it tries to read the first line of output.
I ...
3
votes
4answers
377 views
C++ WinAPI: handling long file paths/names
I'm looking at handling longer file paths in my windows application.
Currently, I have a text box (edit box) in which a user can type an absolute file path. I then read that typed file path, using ...
1
vote
1answer
33 views
Is there a workaround for the filename length limit in encfs?
I use Dropbox with encfs. The problem is that my host supports only 256 characters in a filename, hence encfs supports only ~190. Is there a way to circumvent that without reinstall and increase limit ...
1
vote
1answer
206 views
Windows: creating a shortcut to a non-exist drive doesn't allow long folder and filenames
I'm trying to use PowerShell to create a shortcut that targets a file on a mapped drive. This script will be running before the drive is actually mapped, though. Here's the code:
$Shortcut = ...
1
vote
7answers
1k views
How to set long string(>260) in default FileName in SaveFileDialog?
I am using a SaveFileDialog and have to set long string(longFileName) in FileName. String longFileName is known at Runtime.
If I set
saveFileDialog.FileName = longFileName ;
then I get ...
1
vote
5answers
14k views
How to add a string to a string[] array? There's no .Add function. :S
private string[] ColeccionDeCortes(string Path)
{
DirectoryInfo X = new DirectoryInfo(Path);
FileInfo[] listaDeArchivos = X.GetFiles();
string[] Coleccion;
...
0
votes
1answer
155 views
Maximum length of an image file for a j2me application?
i am building a application in j2me where i will receive an image via a Wireless connection. I want to know what can be the maximum length of the filename when i save it.
My main motive is to store ...
0
votes
4answers
5k views
C#: Using Directory.GetFiles to get files with fixed length
The directory 'C:\temp' has two files named 'GZ96A7005.tif' and 'GZ96A7005001.tif'. They have different length with the same extension. Now I run below code:
string[] resultFileNames = ...
0
votes
3answers
345 views
How to get around a 'by design' issue with Windows dir?
dir /b produces a nice file-only list
dir /x produces a detailed listing (date, time, size, longname, shortname)
if you combine the two (i. e. dir /b /x) the /x switch gets ignored. this behavior as ...