Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
121 views

Here's what I have so far: package main import ( "os" "github.com/saferwall/pe" ) func main(){ exePath, _:= os.Executable() peFile, _:= pe.New(exePath, &pe.Options{}) ...
Ethan Leonard's user avatar
0 votes
2 answers
856 views

The Windows shell has several hundred file properties that each have an index and a name. If one knows the index of a property, its value can be accessed for a specific file using the following code ...
NewSites's user avatar
  • 1,849
0 votes
1 answer
4k views

Trying to create a Get-Child command that lists Mode, File (path\name), CreationTime, LastWriteTime, LastAccessTime, Length, and the User/Owner of the file/directories listed. I need to do this both ...
deep_submerge42's user avatar
0 votes
1 answer
61 views

I have a file with the following properties where I can retrieve created and modified dates by using pathlib (st_ctime, st_mtime) easily. But I want to get the date displayed in the Details section ...
Javid Shiriyev's user avatar
0 votes
0 answers
120 views

I am trying to call MoveFile to move a file to a new directory. Then make a new file with same name in the location it was moved from. I want the creation time attribute of the new file to be set to ...
cab327's user avatar
  • 39
0 votes
1 answer
865 views

Is there a way to edit/change the extended file properties of a file using powershell? In particular I'd like to change the extended file properties of a .msg file which has been exported from outlook....
user avatar
-2 votes
2 answers
69 views

This question has 2 parts: Ultimately I am trying to print out the data from the filedescription and originalfilename. The first and probably simple question is how do I get those on the same line? I ...
user avatar
1 vote
2 answers
2k views

I am attempting to access the Date Last Saved of an xls file using PowerShell. It is in the details page and is more of a hidden attribute of the file. Pic attached for reference. EDIT: Thank you for ...
Charles Davis's user avatar
0 votes
1 answer
631 views

I'm using Gradle 7.0 and I made my project using the task Gradle Init. Then I imported it in Eclipse (2021-03 with buildship 3.1.5). Everything is fine but when I try to read or when I create a file ...
Gadou's user avatar
  • 59
1 vote
2 answers
1k views

copy /b Source+,, updates a file's Modified Date. Is there a method for folders?
SilverLink's user avatar
4 votes
1 answer
4k views

I'm trying to convert a few thousand home videos to a smaller format. However, encoding the video changed the created and modified timestamp to today's date. I wrote a powershell script that ...
SprintUser's user avatar
0 votes
2 answers
732 views

I have a small group of Raspberry Pis, all on the same local network (192.168.1.2xx) All are running Python 3.7.3, one (R Pi CM3) on Raspbian Buster, the other (R Pi 4B 8gig) on Raspberry Pi OS 64. I ...
David Xanatos's user avatar
0 votes
2 answers
288 views

I am new to coding python and have trouble when I print out from a file (only tried from .rtf) as it displays all the file properties. I've tried a variety of ways to code the same thing, but the ...
Camila Pazmino's user avatar
1 vote
2 answers
4k views

I have searched and found several examples of how to do this, but I can't make them work - well part of it doesn't work. I can perform the file upload, but the following attempt to change properties ...
Aidal's user avatar
  • 869
1 vote
2 answers
1k views

I have hundreds of folders of images on my HDD, and with very few exceptions they each have a cover image that I want to use as their respective folder thumbnails, or at least a memorable first image. ...
FireHawkDelta's user avatar
1 vote
1 answer
1k views

After adding metadata property handler for .svg extension with this tool, I am able to add keywords to .svg files via Windows Explorer. I am now searching a way to add keywords via a C# application. I ...
alex's user avatar
  • 5,761
0 votes
0 answers
59 views

I am using google drive sync app. Once the file is synced from pc to drive , its file icon is show tick mark that means it is completed. I want to run a scheduled task everyday that delete all files ...
Mahesh's user avatar
  • 1
0 votes
2 answers
767 views

I have a database that writes data into a copied excel template. The template is hidden to keep the end user from tampering with it, however the final result is also hidden. Is there a way to change ...
Richie2shoes's user avatar
0 votes
1 answer
616 views

I'm trying to extract the value "file version" using c#, but it keeps on coming out empty. All other values seems to be read ok. Anyone got any tips? public static string GetExtendedFileProperty(...
Nesvik's user avatar
  • 1
5 votes
1 answer
4k views

I am interested in getting the 'Copyright' information field using the cmd or PowerShell. Manually, it can be accessed by RighClick the executable -> Properties -> Details -> Copyright I am ...
khan's user avatar
  • 2,210
7 votes
1 answer
7k views

So over the years between getting copied from one PC/hard drive to the next, my music collection is in a bit of a mess, so I want to go through each one programmatically and update the file metadata ...
Thomas Gass's user avatar
0 votes
1 answer
36 views

I am trying to understand file properties and from what I understand that for the files like shell scripts on UNIX to be executable, the file properties need to be set to execute (rwx-). At our ...
Crux.Z's user avatar
  • 13
38 votes
5 answers
53k views

I am writing a plugin for VS Code and I need to know the path of the file which is calling the extension, either if it was called from the editor context menu or explorer context menu or the user ...
JM. Benitez's user avatar
0 votes
1 answer
420 views

Situation I have a CSV file called inventory.csv located on an Oracle database server (2008 R2 Enterprise Edition Windows Server). This CSV file is used as an Oracle external table. Every hour, a ...
chester's user avatar
  • 297
4 votes
0 answers
1k views

In my C# project, I want to create a new custom property for all my dlls and executables and want it to show in the details tab like shown here.
Asher I's user avatar
  • 41