Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
19k views

Deleting a file in VBA

Using VBA, how can I (a) test whether a file exists, and if so, (b) delete it?
2
votes
0answers
29 views

Deleting files which have been used in a C# LibraryStack in a Scatterview

first, i´m new to c#/wpf/surface programming. Im using a LibraryStack in a ScatterViewItem in a ScatterView: <Grid Name="DataGrid" Background="LightBlue" HorizontalAlignment="Stretch" ...
2
votes
2answers
161 views

How to recycle file/folder from network share delete

I'm trying to code a program which will watch a directory/disk and move deleted files/folders to recycle bin when they are deleted from network shared folder. I have this code which is working when a ...
2
votes
4answers
77 views

Python - How to display a list?

I'm new to python. I'm building a simple function that works(delete the files). But In the end I want to return the list of the files that were effectively deleted. This is the function: def ...
2
votes
4answers
116 views

Secure File Delete in C

Secure File Deleting in C i need to securly delete a file in C, here is what i do: use fopen to get a handle of the file calculate the size using lseek/ftell get random seed depending on current ...
2
votes
2answers
60 views

How can I remove temporary folders under Windows with R?

After a session I would like to clean up my temporary folders, like for instance d <- tempfile() dir.create(d) setwd(d) # now work and sweave and latex etc How can I remove d and its elements? ...
2
votes
3answers
820 views

C++ delete file

When I compile and run my C++ program that deletes a file called example.txt (below) #include <stdio.h> int main () { if( remove( "example.txt" ) != 0 ) perror( "Error deleting file" ); ...
1
vote
1answer
46 views

deleting files with perl

I'm trying to write a perl script that reads filenames in a test.txt file into an array, and then deletes the files based on the filenames in the array. Here's what I've got so far... ...
1
vote
1answer
13 views

file operations on local sever using codeigniter

in my project i have a table named portfolio, which has an attribute called images. in that attribute i am saving the image location like 'uploads/1.jpg'. i don't have any problem with file uploading ...
1
vote
3answers
130 views

Remove all files that does not have the following extensions in Linux

I have a list of extensions avi,mkv,wmv,mp4,mp5,flv,M4V,mpeg,mov,m1v,m2v,3gp,avchd I want to remove all files without the following extensions aswell as files without extension in a directory in ...
1
vote
3answers
84 views

How can I get R back

I just deleted the class R in my Android-Project, how can I get it back. I tried to clean the Project Setup, I created new Files which reference R. But nothing works. Please help me what can I do? ...
1
vote
1answer
76 views

Get path from a file that trigger an app

I´m downloading a file to a SD card in the BlackBerry, and when I open that file, my application run. So when my application run, I need to delete that file. The problem is that I dont know where it ...
1
vote
1answer
281 views

Deleting files and directories before installation of MSI

Our product was installed via InstallShield Setup over the years. I changed the installation to MSI (WiX) this year. Now the MSI should clean up the directory, which remains the same. One custom ...
1
vote
3answers
1k views

Delete a zip file after unzip in java

How to delete a zip file in java? file.delete method returns false. Why? File file = new File("/mibook/"+mFilename+"/"+mZipname.toString()); boolean deleted = file.delete(); edit: Rule "Directory ...
1
vote
5answers
431 views

Delete files that match regex

Shortest and nicest way to delete all files from directory that match certain regex in Perl on Windows. My example: delete all *.txt files from directory, but leave tmp.txt? Windows.
1
vote
2answers
1k views

The process cannot access the file because it is being used by another process

I am adding images to a FlowLayoutPanel control via the following code Dim WithEvents Pedit As DevExpress.XtraEditors.PictureEdit Private Sub LoadImagesCommon(ByVal fi As FileInfo) Pedit = ...
0
votes
1answer
28 views

Is there a way to delete folders from a web role after deployment?

I have some files whose sole purpose is to be copied to the bin folder in a deployment. After built & deployed, these folders can be deleted from the web role. Is there a way to automate this? ...
0
votes
1answer
73 views

Problems deleting and creating file on SD card

Theres a problem I can't seem to fix: In my OnCreate in the CameraActivity, I delete the picture first if it's there. If there is a situation where this is done, the picture file is created but the ...
0
votes
2answers
78 views

Marking files for deletion using MoveFileEx

I'm having a bit of trouble getting MoveFileEx to work properly in Windows 7 x64. I'm running my application as administrator, marking files for deletion on next reboot but after rebooting find that ...
0
votes
0answers
57 views

Batch File to delete one random folder [closed]

I need to delete 1 random folder and all the files in that folder, which exists inside another folder. I have looked and looked, and yes I can delete folders and their files, but I haven't figured ...
0
votes
2answers
157 views

Android delete files folder from Internal Storage not working

I'm trying to delete my files folder from Internal Storage, but the code which I'm using is not actually working. Any ideas why? Button login = (Button) findViewById(R.id.login_btn); ...
0
votes
2answers
112 views

Deleting file from static method error: Access to the path … is denied

My host swears the ASPNet account has full access to the folder some photos reside in. I'm trying to delete a photo, here's the C#: public static bool Delete(string pathAndFilename) { var path = ...
0
votes
0answers
81 views

Deleting files in a zip archive [closed]

Possible Duplicate: Delete file from zipfile with the ZipFile Module I was wondering if anyone knows how to delete a file inside a zip archive, since I can't rename files in the archive.
0
votes
1answer
114 views

Is there ICopyHook.CopyCallback for files or alternative for it?

we use ICopyHook.CopyCallback shell extension to detect deletion , moving ,creation of folders , but not files Link , How to detect if the user is deleting a file from C# Application , or How to ...
0
votes
1answer
311 views

DeleteFile of an EXE immediately after Process.WaitForExit fails

I do the following: Copy an executable to C:\temp\x.exe Start the executable with System.Diagnostics.Process.Start and then wait for the process to exit, synchronously, by calling WaitForExit on the ...