1
vote
2answers
33 views
How do I list just the files that would be commited?
Hello,
Is there any way to get a list of files that will be committed when I type the following?
git commit -m "my changes"
git status lists too much. I could strip out all the words, but I'd …
9
votes
7answers
4k views
How can I get Eclipse to show .* files?
By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.
2
votes
3answers
70 views
Renaming files to remove periods in Powershell
I have a list of files like this:
Test.(file1)[text].txt
Test.(file2)[text].txt
Test.(file3)[text].txt
I need to remove any "()","[]" and any ".", replace them spaces without changing the file …
3
votes
4answers
646 views
Has Windows 7 Fixed the 255 Character File Path Limit?
As I understand it, the limitation of 255 characters in a file path is a Windows limitation. What is the reasoning for this? If so, has this been resolved in Windows 7?
In our continuous integration …
0
votes
1answer
46 views
File modification time (seconds) on Unix
Hi there,
On Unix, is there a command to display a file's modification time, precise to the second?
On Linux this is easily done with a "stat -c %y", which returns something like 2009-11-27 …
1
vote
2answers
43 views
WPF - where can I find some window layout ideas/examples and resource files that will make my application look better
I enjoy working with WPF but I need a little more of "designer's touch" to my applications. I have been unable to find a good resource for WPF layout examples and color schemes along with the …
0
votes
5answers
83 views
Can’t delete file - c#
Hey
Why can't I delete files after downloading file
I get error:
file 'exfile.jpgg' because it is being used by another process.
Edit: (Here is more code)
…
0
votes
2answers
31 views
PHP $_FILES file loop upload
I want to insert files into mysql from php function.
The files that need to be uploaded are already present in the server.
So I don't want to use the upload form.
I want to loop through the directory …
6
votes
9answers
287 views
How do I get files in my own file format to have its own dynamic icon?
Our application has a file format similar to the OpenDocument file format (see http://en.wikipedia.org/wiki/OpenDocument) - i.e. zipped with a manifest file, a thumbnail image, etc.
I notice that …
2
votes
1answer
60 views
Open “file” from memory stream?
Hi,
I am wondering if its even possible. I am returning files from database (blob) and have them as bytes array. I would like to let the user to show the data content by clicking on associated object …
8
votes
7answers
577 views
Windows temporary files behaviour - are they deleted by the system?
Using the .net framework you have the option to create temporary files with
Path.GetTempFileName();
The MSDN doesn't tell us what happens to temporary files. I remember reading somewhere that they …
-2
votes
0answers
39 views
convert any file to .csv formate [closed]
Hi all,
I have many files, each have different extensions. I want to convert those into .csv format, using C#. What code I have to write?
1
vote
9answers
2k views
jquery read/write to file
Is there a way to get jquery to get information to and from a file...
let say i ask a question and i like to get the answer in a file.. to keep track..
is it possible? how?
0
votes
2answers
74 views
How can I make my batch script for deletion of old files work?
Inside a folder (say c:\test) I want to delete the oldest file if the number of files are over 21.
This is what I came up with, issue is that it one time deletes the oldest file, second run it does …
0
votes
4answers
317 views
How to join filesystem path strings in php?
Is there a builtin function in php to intelligently join path strings?
Like path_join("abc/de/","/fg/x.php") which should return "abc/de/fg/x.php", but path_join("abc/de","fg/x.php") should have the …
