1
vote
2answers
17 views

Windows Batch script tp process flat files

I want some help in writing Windows Batch Script. I have a Delimeted Text file with data as shown below: 1|2|3|4|5|6 1|2|3|4|5|6 1|2|3|4|5|6 1|2|3|4|5|6 1|2|3|4|5|6 1|2|3|4|5|6. I want to write a ...
-1
votes
0answers
33 views

Files: how to distinguish file lock and permission denied cases?

How to distinguish cases when file operation failed due to file lock and lack of permissions?
-1
votes
1answer
70 views

Trick windows into thinking a file is in use [closed]

I need a way to trick another program into thinking a file is already in use using C#.
0
votes
4answers
57 views

Replace or delete certain characters from filenames of all files in a folder

How do I delete certain characters or replace certain characters with other characters by some batch file execution, for filenames of all files in a Windows folder in one go, is there a DOS command ...
0
votes
0answers
47 views

Intermittent 'Could not find a part of the path' error upon file stream initialization

I've just moved some software to a new Windows 2012 server. The problem I'm troubleshooting relates to a Windows service that does background processing when it finds jobs to run. In the first week ...
0
votes
0answers
10 views

Copying just the files from a hierarchy of directories in WIndows? [closed]

The title might seem a bit unclear... What I'm trying to do is to copy all of the files from a group of folders into a different directory, but without copying the folders. For example, if I had: ...
0
votes
0answers
41 views

Python check if file is in use on Windows [duplicate]

I've done some searching on how I can see if a file is in use by another process before i try and open it. Best I've seen is the code below, but it seems a bit hacky to me, wondering if there might ...
0
votes
2answers
25 views

Windows CMD Search and Delete file by name

I have a website dump which has about half a gig worth of images which have been converted to various file sizes. The structure goes like: media/ 1/ 1.original.jpg 1.large.jpg ...
-1
votes
0answers
7 views

dividing a folder into subfolders based on other folders, but not coping/moving [closed]

I've got one folder with files like this: Folder 0: A, C, D, F, H, I, M, N, O, T, U, V, W, and then folders like: Folder 1: A, E, I, M, R, V and others Folder 2: B, F, J, N, S, W Folder 3: C, ...
1
vote
2answers
93 views

Linux vs. Windows File.delete()

I'm having a bit of trouble understanding how Windows handles files compared to Linux. I'm trying to remove an entry in a file that I'm using as a "database" (it's just a regular file). Java ...
0
votes
2answers
47 views

windows batch file doesn't work

I have a batch file and it doesn't work. The funny thing is all the commands work while running inside of the cmd window. The NON-WORKING - FAULTY line from batch file: for /F %%i in ('dir /B ...
0
votes
1answer
22 views

Error while loading string to xml document in windows c#

I have an application where it reads the xml data, makes some changes and saves it into a word document. When i run the app 1st time the base URI is "C:\Documents\Visual Studio ...
0
votes
2answers
19 views

Script to list the files of a folder and export it to a text document

I was just wondering if anyone knew of a way that you could get all the folders, files and sub-folders of a location (such as C:\Users\Username) and export it to a text document on a network share ...
0
votes
1answer
21 views

Find out what file does a program attempt to read

I've got third party Winamp plug-in in windows, that should be able to load its datafile. The datafile is located in same folder as the plug-in, but can not be found. My idea is that plug-in searches ...
0
votes
2answers
29 views

Data position in file

At first I loaded all my variables to memory at application start. Over time, the number of variables became so huge that I don't want to do that anymore. Instead I am retrieving them only when they ...
0
votes
1answer
45 views

Windows tool to check for used files (by Java OSGi process)

I'm looking for a tool that'll give me information about file operations (e.g. open/close/read/write, how many bytes, how many time waited), filtered by process and that'll allow me to have a file ...
-3
votes
2answers
24 views

unable to read from file .Text format unknown [closed]

I'm unable to read data from this file .. .Its a .dat file & i tried opening using notepad. But after opening I'm unable to read from it.The words are not in English . I tried changing the font ...
0
votes
1answer
49 views

Python: Windows System File

In python, how can I identify a file that is a "window system file". From the command line I can do this with the following command: ATTRIB "c:\file_path_name.txt" If the return has the "S" ...
0
votes
2answers
37 views

Windows Batch If Block Syntax

I really can't find what's the problem with the syntax of this script There's something wrong with the if blocks but I can't see what is the issue. @ECHO off set PROJECT=C:/ws/UI/Trunky/plugins/. ...
0
votes
1answer
48 views

C getopenfilename getFileName

I have the following code which the problem is, when i'm printing the full path name of the file, i get double spaces between each character in the array. // initialization outside any class in .c ...
0
votes
0answers
28 views

Maximize memory for file cache or memory-based file system on Windows?

I have an application which needs to create many small files in maximum performance (less than 1% of them may be read later), and I want to avoid using asynchronous file API to keep the simplicity of ...
0
votes
3answers
87 views

File not found exception in windows c#

the application runs well the first time when I open a file, read its content and save it. But when I open the same file again , I get file not found exception. How do I refresh the stream? ...
-2
votes
2answers
55 views

Android: File Location

I am writing to a path mnt/sdcard/foldername. I get no errors and the file is written, but when I browse the internal storage of my phone I can not find the folder. Where would the folder be located? ...
0
votes
2answers
41 views

How to copy a location to a batch file from a file that is dragged and dropped to open the batch file

So I've been trying to create a batch file for a piece of software called DiscEX the software requires command line use from cmd.exe windows xp or higher the way it's initiated is like this discex ...
1
vote
1answer
55 views

Unable to determine file creation time with perl on Windows/Cygwin

I wrote this to find out the file creation time for a given file: #!/usr/bin/perl use strict; use warnings; use File::stat; open (my $fh, '<', "abc.txt") or die "$!"; my $t = (stat($fh))[9]; ...
0
votes
1answer
42 views

c++ cli comparing hexadecimal bytes from a file not working

I have this file called ab.exe it contains this in hexadecimal ...
0
votes
1answer
55 views

How do I retrieve the file Property metadata in Windows from within QT?

I couldn't find a good answer for this. What is the code for looking at the metadata of an executable file, like Description and Company, or the API reference guide for doing such a thing? I have ...
0
votes
1answer
28 views

Ruby: Reading Unsaved Text File

I have a RFID scanner program in Windows writing its results to a sample text file. However the program does NOT save the file. Is there any way in Ruby that I can read in these changes made to the ...
0
votes
1answer
84 views

Windows Batch file for checking if a file exists

I have tried to find an answer to my question on StackOverflow but I can only find partial answers and I can't glue them together. :) I have tried to put a short easy batch together but I can't seem ...
1
vote
2answers
338 views

How can I change the default .exe icon in Visual Studio 2012 (C++)

I was wondering if there was a way to change the default icon that VS2012 makes when I compile my app. Just for those wondering, I am trying to change the .exe program's icon, not the window icon at ...
0
votes
0answers
44 views

Convert windows device filename to drive letter

I am trying to get the filename associated with a process handle in C, and since my code needs to run on Windows XP I'm using GetProcessImageFileName (rather than QueryFullProcessImageName). ...
0
votes
1answer
73 views

Renaming multiple files to folder names on windows

I have been trying to make a program that renames several .mp4 file to the name of the folder it is in.The program works sometimes on a few files but eventually throws a null pointer exception I ...
0
votes
1answer
106 views

Redirecting text data from file to stdin c# windows

How can I redirect data from some text file to the C# program's stdin? Via some code or command prompt (in Windows)? I've tried redirecting it in command prompt like this: input.txt > program.exe > ...
1
vote
1answer
92 views

How do I use C# to check if program associated with file extension is valid?

I'm using the following method to open a file: Process.Start(); This throws Win32Exception if a particular file with some extension is associated to a program in Windows that no longer exists. Now ...
0
votes
1answer
17 views

How to include spaces in file names in GForth (GNU Forth)?

When I tried including a file on Unix (and Windows) it won't work when it includes spaces. For example, these won't work: include ~/Space Folder/test.fs include ~/Space\ Folder/test.fs include ...
3
votes
2answers
62 views

Reading file from within JAR not working on windows

I'm trying to read from a file that is packaged up inside a JAR, along with the class that reads it. To do this, I use the following: getClass().getClassLoader().getResourceAsStream(file) This ...
0
votes
1answer
183 views

using cmd / batch file to get all the files recursively modified or created after certain date

I am trying to get all the files in an entire directory structure that have been created or modified after a certain date: for /f "usebackq tokens=1-7* delims=/: " %I in (`dir/tc/o-d/s ...
-2
votes
1answer
27 views

Delay in Windows File Lock Release [closed]

I have two processes running. Process 1 closes a file and Process 2 immediately tries to open it. I find that if this is done rapidly, Windows tells Process 2 that Process 1 still has the file opened. ...
0
votes
0answers
47 views

Reading from and printing contents of IFF file works on Windows, but not Linux

I'm having a little cross-platform issue with Java. I'm using the following code String get = JOptionPane.showInputDialog(null, "Iff Location?"); String output = new Scanner(new ...
1
vote
1answer
54 views

Monitoring of multiple files, starting from Windows boot

I'm trying to make a program for sort of "tagging" (in my case they are not tags actually) Windows files, putting descriptions etc. Language: C#. I need somewhat of a guideline for a way to monitor ...
1
vote
4answers
164 views

Read a line from text file and delete it

I want to read a text file line by line, perform some checks, and if the line is not required, delete it. I have done the code for reading line, but I don't know how to delete that line if it is not ...
0
votes
0answers
77 views

read the ascii file characters in an array in java

i wanted some help regarding reading an ASCII values from am image file and store them in an array in java. i am able to get the values display also using the row and column of the file but not been ...
0
votes
4answers
204 views

Read a text file line by line using Win32 API

I have a created a text file in my program in which I have saved IP addresses and port numbers of the clients that connect to my server. After every 30 secs, I want to read the IP and port number of a ...
1
vote
0answers
59 views

Permission denied when trying to write into log file

I have a problem writing into a log file in my C/C++ prog. Here's an example of the code where the problem occurs EnterCriticalSection(&critical); printf("\nWaiting for a connection on TCP port ...
0
votes
3answers
62 views

A script to automatically delete folders in another folder

I've came across several posts and even code online about .batch files to delete folders and files. However, I am still pretty confused by the myriad amount of information that's on the Internet. Is ...
0
votes
1answer
106 views

PowerShell script to replace/update specific files on a fileshare

I'm new to PowerShell and I need some help with this script. Can anyone help me figure out what I'm doing wrong? I am trying to search several directories and replace all instances of newfile.swf. ...
0
votes
1answer
54 views

How to set the sharing mode on a file when using open()

When you open a file with CreateFile you can set its sharing mode (the third parameter). Is there a way to set the sharing mode when using _open? Possibly by a call to _setmode or something ...
4
votes
2answers
108 views

fgetpos() behaviour depends on newline character

Consider these two files: file1.txt (Windows newline) abc\r\n def\r\n file2.txt (Unix newline) abc\n def\n I've noticed that for the file2.txt, the position obtained with fgetpos is not ...
-2
votes
2answers
100 views

Find last changed file in windows without knowing the folder [closed]

I want to read the last changed file in windows. The problem is, I don't know in which folder, so I need to scan the full disk or use the "recent files". I only need the full file path. C# preferred. ...
0
votes
0answers
16 views

Adding files to project dynamically

I have a cross-platform solution that requires the use of XNA Content Pipeline to build some of it's resources. Since these projects cannot be directly referenced in my main Windows Phone 8 project, ...

1 2 3 4 5 13