Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
206 views

How to set clear attribute “X” on files with in C#?

I have a hidden file on my USB removable storage (FAT file system). I'm using Windows 7. If I go to Properties window of this file and then to the Details tab, I will see that the attributes of the ...
4
votes
3answers
546 views

Delete link to file without clearing readonly bit

I have a set of files with multiple links to them. The files are owned by TFS source control but other links to them are made to them. How do I delete the additional links without clearing the ...
4
votes
1answer
2k views

Testing for file attribute in batch file

I'm writing a batch file and I need to know if a file is read only. How can I do that ? I know how to get them using the %~a modifier but I don't know what to do with this output. It gives something ...
3
votes
1answer
66 views

File.SetAttributes() not working on USB key as expected

FileAttributes attrs = File.GetAttributes( path); File.SetAttributes( path, FileAttributes.Hidden ); attrs = File.GetAttributes( path); This code snippet works on my NTFS file system ...
3
votes
1answer
606 views

c# check if a directory is hidden? [closed]

Possible Duplicate: How to test if directory is hidden in C#? DirectoryInfo dir = new DirectoryInfo(@"c:\test"); if ((dir.Attributes & FileAttributes.Hidden) == (FileAttributes.Hidden)) ...
3
votes
4answers
338 views

Strange attribute value reported by FindFirst(), Attr = 2080

When searching for files with FindFirst() I get an attribute value in the TSearchRec.Attr field of 2080. It is not specified in the help as there are only these values available and no combination of ...
2
votes
2answers
48 views

Git on Windows and file attributes

I noticed that when you commit or checkout files using Git in a Windows environment, the file attributes are not preserved (for example hidden or read-only). If I commit a hidden file and then I check ...
2
votes
1answer
128 views

Get attributes of all files under a directory while accessing the directory only

I'm trying to write a function in C# that gets a directory path as parameter and returns a dictionary where the keys are the files directly under that directory and the values are their last ...
2
votes
2answers
1k views

Using VBA to get extended file attributes

Trying to use Excel VBA to capture all the file attributes from files on disk, including extended attributes. Was able to get it to loop through the files and capture the basic attributes (that come ...
2
votes
2answers
127 views

How to know whether a file was processed before

How can I be sure if a file was processed before? There is a remote storage location which is a file source for my application. My program gets files from this location and processes them in a ...
2
votes
2answers
191 views

delete files which are more than one month old using c#

how to delete files which are more than one month old using c# script. i am using framework 2.0..
2
votes
4answers
309 views

An XML language for describing file attributes of a directory tree?

I have an application in mind which will record directory listings of a file system in text form. That is, it should say something like: File name is: abc.txt Last modification date is: ...
1
vote
1answer
37 views

How to work with Core Data and iOS 5 storage guidelines?

I wrote an app that allows users to store text articles in Core Data. I'm using a sqlite backing store. So what "category of data", as mentioned in this technical note (login may be required), should ...
1
vote
1answer
29 views

The number of blocks allocated to a sparse file

Is there any way to access the number of blocks allocated to a file with the standard Java File API? Or even do it with some unsupported & undocumented API underneat. Anything to avoid native code ...
1
vote
2answers
54 views

C# make file read/write from readonly

If File.SetAttributes("C:\\myFile.txt", FileAttributes.ReadOnly); sets a file as read only, how do I set it back to read/write if I need to? I suspect it would be FileAttributes.Normal however will ...
1
vote
2answers
57 views

How to find if an item in a Windows folder is really hidden from the user?

I need to get the count of items (folders and files) in a Windows folder. I can easily do it based on the condition if I should include hidden items or not. But in my program I want to get the count ...
1
vote
2answers
437 views

Getting specific file attributes

I've got a simple WCF service that lets clients/consumers upload image, audio or video files to it. After the upload, the service is supposed to analyze the file and somehow retrieve the following ...
1
vote
1answer
150 views

What is the best pratice to get a file attribute(such as read only), and security attribute(such as read deny write deny)?

I am programming in C++ MFC, windows. What is the best practice to get a file attribute(such as read only), and security attribute(such as read deny write deny) in windows XP, Vista, and Win7? and ...
0
votes
4answers
60 views

Can't write to file immediately after creation

In the following code: if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "/data.dat")) { ...
0
votes
0answers
37 views

User Define file Attribute in objective -c

I want to add functionality to take backup of files of certain categories, in objective c So I want to set some hidden information so that whenever I am going to take backup I can get the category ...
0
votes
1answer
45 views

File id for keeping track of file changes in Java?

I'm trying to find a way to keep track of files even when they are moved or renamed in the file system. One idea I had was to use the new UserDefinedFileAttributeView in Java 7 and create a custom ...
0
votes
1answer
65 views

Make folder hidden after inno setup installs it

My app has a folder of files that are all marked as "hidden" (including the folder itself). However, Inno Setup won't copy them for installation unless I remove the "hidden" attribute first. Fair ...
0
votes
4answers
121 views

PHP script to delete thousands of .jpg images?

My weak shared web host doesn't support cron or perl and I often need to delete thousands of .jpg images from certain folders. The images are uploaded from webcams. I'm wondering if there is a simple ...
0
votes
1answer
129 views

Modifying file properties/metadata

I can get a file's properties/metadata by calling Shell32.Folder.GetDetailsOf, but I can't seem to figure out how to modify those attributes. The properties I'm referring to are the "extended details" ...
0
votes
2answers
41 views

Make a file Readonly from code, and also doesnt allow to change it from the Properties

I would like to change a file to read only from my application. For that i have used, SetFileAttributes(szFile, FILE_ATTRIBUTE_READONLY); And worked. But the readonly property could be changed from ...
0
votes
2answers
236 views

Get File Creation Date Over HTTP

Given a file on a webserver (e.g., http://foo.com/bar.zip -> only accessible through HTTP), is there any way to get the date attributes (e.g., date [created, modified]) without downloading the entire ...
0
votes
3answers
100 views

Finding the attributes of Chinese filenames using NewLISP?

The following NewLISP code shows me the file attributes of files under Win32. However, some of the filenames retrieved have Chinese characters in the name. When the GetFileAttributesA function ...
0
votes
2answers
143 views

Unknown FileAttributes

I tried to run the following code: var top = new DirectoryInfo("C:\\"); foreach(var info in top.GetFileSystemInfos()) System.Console.WriteLine("{0}: {1}", info.Name, info.Attributes); I got the ...
0
votes
1answer
358 views

How to get the modified time attribute of a certain file on FTP

I need to monitor a certain file on FTP, once it had been updated, I need to fetch it from FTP. but how to identify whether it's updated or not is a problem. Does Anybody have any experience on this? ...
0
votes
3answers
443 views

Keep Attributes of Version Controlled Files Unchanged

Is it possible to keep the attributes of a version controlled file unchanged? I have a directory structure which I'd like my installer to recreate on the client machine. I was hoping the entire ...
-2
votes
3answers
76 views

create file with FileStream and apply FileAttributes

Is it possible while creating the file with FileStream also apply FileAttributes at the same time? I would like to create file for stream writing with FileAttributes.Temporary file attribute.