Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
209 views

Network path of a file/directory using Java

How to get the network path of a file or directory on a windows pc using java? Usually we can see it in shared folder's properties on windows. As shown below.....
4
votes
1answer
314 views

How can i see the assembly version of a .NET assembly in Windows Vista and newer (WIndows 7, 2008)?

In windows 2003 and windows XP you could right click on an assembly (.dll) go to properties, click on the version tab and then you would see 3 different version numbers: Assembly version, file version ...
3
votes
2answers
617 views

Creating an MS Office document-like file format to expose document properties

Our application's "documents" are single binary files. Our customers have asked if we can add MS Office-like document properties to our document files so that they are easier for users to manage. By ...
2
votes
7answers
3k views

Read extended image properties in c#

I would like to find the height/width of an image on disk without opening it, if possible (for performance reasons). The Windows properties pane for images contains information like width, height, ...
2
votes
4answers
3k views

How can I get the assembly last modified date?

I want to render (for internal debugging/info) the last modified date of an assembly, so I know when was a certain website deployed. Is it possible to get it though reflection? I get the version ...
1
vote
2answers
438 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
0answers
61 views

How can I move my SVN working copy to Codeplex, maintainting file properties, but not history?

I am about to open-source one of my projects, and I want to move the current instance of it into CodePlex. How would I go about copying the current working directory into CodePlex's SVN, maintainting ...
1
vote
1answer
94 views

Adding custom/new properties to any file regardless of type and extension e.g. setting 'Author' on a .txt file

I want the ability add properties and tags to a file (specifically ebook files and ebook related properties in Windows 7 but interested to go so for as many OSes as possible) For e.g. Example.txt or ...
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
55 views

Extracting “Last updated by” property of a word file

I am making an application in which I need to keep a check on all the properties of a word file like Last Updated,Name etc I also need Last Updated by, i.e the user who made changes in the file. How ...
0
votes
1answer
109 views

What is the difference between File.SetCreationTime() and File.SetCreationTimeUtc()

In particular, is there any difference between these two lines in terms of their outcomes: File.SetCreationTime("foo.txt", DateTime.UtcNow); File.SetCreationTimeUtc("foo.txt", DateTime.UtcNow); ...
0
votes
3answers
192 views

creating hidden files using .NET

How can I create or mark a file as hidden using .NET?