Refers to the deletion of files from a filesystem or records from a database, or the deallocation of objects in memory. Can also refer to the DELETE which is one of the HTTP protocol methods.
464
votes
9answers
205k views
How to delete a “git commit” ?
I would like to know how to delete a git commit. By "delete" I mean it is as if I did not do that commmit and when I do a git push in the future, my changes will not push to the remote branch.
I read ...
177
votes
15answers
286k views
Batch file to delete files older than N days
I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've searched around the web, and found some examples with hundreds of lines of code, and others that required ...
128
votes
7answers
93k views
What's the fastest way to delete a large folder in Windows? [closed]
I want to delete a folder that contains thousands of files and folders. If I use Windows Explorer to delete the folder it can take 10-15 minutes (not always, but often). Is there a faster way in ...
117
votes
7answers
90k views
Deleting Objects in JavaScript
I'm a bit confused with JavaScript's delete operator. Take the following piece of code:
var obj = {
helloText: "Hello World!"
};
var foo = obj;
delete obj;
After this piece of code has been ...
113
votes
18answers
85k views
How to fix “containing working copy admin area is missing” in SVN?
I deleted manually a directory I just added, offline, in my repository. I can't restore the directory.
Any attempt to do an update or a commit will fail with :
"blabla/.svn" containing working copy ...
105
votes
16answers
49k views
Cannot delete directory with Directory.Delete(path, true)
I'm using .NET 3.5, trying to recursively delete a directory using:
Directory.Delete(myPath, true);
My understanding is that this should throw if files are in use or there is a permissions problem, ...
78
votes
12answers
38k views
In what cases do I use malloc vs new?
I see in C++ there are multiple ways to allocate and free data and I understand that when you call malloc you should call free and when you use the new operator you should pair with delete and it is a ...
69
votes
4answers
14k views
Ignore modified (but not committed) files in git?
Can i tell git to ignore files that are modified (deleted) but should not be committed?
The situation is that i have a subdir in the repo which contains stuff I'm not interested in at all, so I ...
65
votes
2answers
32k views
How to delete a workspace in perforce (using p4v)?
I'm new to perforce and have created a few workspaces as exercises for getting familiar with it. Now I would like to delete some of the workspaces. I just want to get rid of the workspaces so that ...
61
votes
12answers
61k views
How does delete[] know it's an array? (C++)
Alright, I think we all agree that what happens with the following code is undefined, depending on what is passed
void deleteForMe(int* pointer)
{
delete[] pointer;
}
The pointer could be all ...
55
votes
11answers
21k views
Xcode duplicate/delete line
Coming from Eclipse and having been used to duplicate lines all the time, it's pretty strange finding out that Xcode has no such function. Or does it?
I know it's possible to change the system wide ...
55
votes
4answers
32k views
svn undo delete before commit
If you delete a directory from a SVN working copy, but haven't commited yet, it's not obvious how to get it back. Google even suggests "svn undo delete before commit" as a common query when you type ...
51
votes
8answers
21k views
C++: Delete this?
Is it allowed to delete this; if it the delete-statement the last statement that will be executed in that instance of the class? Or is it maybe allowed to delete that instance in a method called at ...
50
votes
11answers
9k views
Why doesn't delete set the pointer to NULL?
I always wondered why automatic setting of the pointer to NULL after delete is not part of the standard. If this gets taken care then many of the crashes due to invalid pointer would not occur. But ...
50
votes
18answers
14k views
Automatically remove Subversion unversioned files
Does anybody know a way to recursively remove all files in a working copy that are not under version control? (I need this to get more reliable results in my automatic build VMware.)
50
votes
2answers
7k views
How to delete an old/unused Data Model Version in xCode 4
How can I delete an old Data Model in xCode 4? The option is disabled on the menu. (the models I want to delete have not been released to the public - they are interim development models)
EDIT: This ...
47
votes
9answers
42k views
Delete Folder Contents in Python
How can I delete the contents of a local folder in Python.
The current project is for Windows but I would like to see *nix also.
45
votes
5answers
35k views
Reset AutoIncrement in SqlServer after Delete
I've deleted some records from a table in a Sql Server db. Now the Ids go from 101 to 1200. I want to delete the records again, but I want the id's to go back to 102. Is there a way to do this in Sql ...
45
votes
5answers
13k views
Is it safe to delete a NULL pointer?
Is it safe to delete a NULL pointer?
And is it a good coding style?
44
votes
3answers
24k views
How do you delete in active record?
How do you delete in active record?
I looked at Active Record Querying and it
does not have anything on deleting that i can see.
1. delete by id
2. delete the current object like:user.remove
3. ...
44
votes
7answers
8k views
Why would one replace default new and delete operators?
Why should would one replace the default operator new and delete with a custom new and delete operators?
This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ:
...
42
votes
12answers
7k views
Faster way to delete matching rows?
I'm a relative novice when it comes to databases. We are using MySQL and I'm currently trying to speed up a SQL statement that seems to take a while to run. I looked around on SO for a similar ...
41
votes
15answers
2k views
Why do I need to delete[]?
Say I got a function like this:
int main()
{
char* str = new char[10];
for(int i=0;i<5;i++)
{
//Do stuff with str
}
delete[] str;
return 0;
}
Why would I need ...
38
votes
16answers
4k views
Any reason to overload global new and delete?
Unless you're programming parts of an OS or an embedded system are there any reasons to do so? I can imagine that for some particular classes that are created and destroyed frequently overloading ...
38
votes
4answers
36k views
How to recursively delete an entire directory with PowerShell 2.0
What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell V2 in Windows 7.
I have learned from several sources that the most obvious ...
38
votes
4answers
24k views
MySQL innodb not releasing disk space after deleting data rows from table
I have one mysql datatable of type INNODB, it contains about 2M data rows. When I deleted data rows from the table, it did not release alloted disk space.
Is there any way to reclaim disk space from ...
35
votes
10answers
43k views
Does delete call the destructor in C++?
I have an class (A) which uses a heap memory allocation for one of it's fields. Class A is instantiated and stored as a pointer field in another class (B).
When I'm done with object B, I call ...
33
votes
8answers
67k views
How to delete an element from an array in C#
lets say I have this array
int[] numbers = {1, 3, 4, 9, 2};
how can I delete an element by "name"? , lets say number 4?
even arraylist didn't help to delete?
string strNumbers = " 1, 3, 4, 9, ...
33
votes
6answers
56k views
How to send PUT, DELETE HTTP request in HttpURLConnection?
I want to know if it is possible to send PUT, DELETE request (practically) through java.net.HttpURLConnection to HTTP-based URL. I have read so many articles describing that how to send GET, POST, ...
33
votes
4answers
15k views
How To: Delete Migration Files in Rails 3
I would like to remove/delete a migration file. How would I go about doing that? I now there are similar questions on here but as an update, is there a better way than doing script/destroy?
Also, ...
30
votes
3answers
9k views
Does deleting a branch in git remove it from the history?
Coming from svn, just starting to become familiar with git.
When a branch is deleted in git, is it removed from the history?
In svn, you can easily recover a branch by reverting the delete ...
30
votes
12answers
67k views
I can't delete a file in java
I'm trying to delete a file, after writing something in it, with FileOutputStream. This is the code I use for writing:
private void writeContent(File file, String fileContent) {
FileOutputStream ...
30
votes
5answers
3k views
C++: meaning of = delete after function declaration
class my_class
{
...
my_class(my_class const &) = delete;
...
};
What does = delete mean in that context?
Are there any other "modifiers" (other than = 0 and = delete)?
28
votes
8answers
12k views
Deleting a gallery image after camera intent photo taken
I know this has been asked in many different ways but I still can not seem to delete the gallery image from the default folder. I am saving the file to the SD card correctly and I can delete that file ...
27
votes
2answers
8k views
Delete team project from free Team Foundation Service
I am using free Team Foundation Server on domain visualstudio.com and I need to delete one project, I found out that I need to use command prompt to delete projects, but when I tried the script it ...
27
votes
4answers
2k views
How should I write ISO C++ Standard conformant custom new and delete operators?
How should I write ISO C++ standard conformant custom new and delete operators?
This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ, Operator overloading, and ...
26
votes
11answers
26k views
How do I delete a directory with read-only files in C#?
I need to delete a directory that contains read-only files. Which approach is better: using DirectoryInfo.Delete(), or ManagementObject.InvokeMethod("Delete")? With DirectoryInfo.Delete, I have to ...
26
votes
6answers
5k views
Deleting a pointer to const (T const*)
I have a basic question regarding the const pointers. I am not allowed to call any non-const member functions using a const pointer. However, I am allowed to do this on a const pointer:
delete p;
...
23
votes
9answers
31k views
In Unix, how do you remove everything in the current directory and below it?
I know this will delete everything in a subdirectory and below it:
rm -rf <subdir-name>
But how do you delete everything in the current directory as well as every subdirectory below it and ...
23
votes
10answers
38k views
Python object deleting itself
Why won't this work? I'm trying to make an instance of a class delete itself.
>>> class A():
def kill(self):
del self
>>> a = A()
>>> a.kill()
>>> a
...
23
votes
8answers
1k views
what does “delete from table where NULL = NULL” means?
what does delete from table where NULL = NULL means ?
23
votes
13answers
76k views
Deleting objects from an ArrayList in Java
I have a big doubt and I hope someone can help me out. I need to delete some objects from an ArrayList if they meet a condition and I'm wondering which way could be more efficient.
Here's the ...
23
votes
4answers
1k views
How do smart pointers choose between delete and delete[]?
Consider:
delete new std :: string [2];
delete [] new std :: string;
Everyone knows the first is an error. If the second wasn't an error, we wouldn't need two distinct operators.
Now consider:
...
22
votes
9answers
15k views
Delete everything from all tables (in Activerecord)
So I can do Post.delete_all to delete all my posts, but what if I want to delete all posts, comments, blogs, etc. I.e., how do I iterate over all my models and run the delete_all method?
22
votes
1answer
5k views
How to remove a file from version control without deleting it?
If I run svn rm file, the file is removed from the local working copy.
What I do now is:
$ cp file file2
$ svn rm file
$ svn ci
$ mv file2 file
How do I avoid svn also deleting the local file when ...
22
votes
4answers
5k views
Git branch deletion
In GIT, what does DELETION of a branch mean?
Will it be gone from the repository? Or will it still be navigable to via git branch
What I really want to do is mark a branch as DEAD END, i.e. the ...
22
votes
14answers
13k views
Eclipse Could not Delete error
I'm working on a project with Eclipse and by now everything was fine, but last time I've tried building it, it returned the error
"The project was not built due to "Could not delete ...
22
votes
7answers
11k views
Solr delete not working for some reason
Just trying to delete all the documents, and did this:
http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E
then committed:
...
21
votes
5answers
24k views
iPhone UITableView - Delete Button
I am using the 'swipe to delete' functionality of the UITableView.
The problem is I am using a customised UITableViewCell which is created on a per item basis in
- (UITableViewCell ...
21
votes
3answers
6k views
Deleting rows with MySQL LEFT JOIN
I have two tables, one for job deadlines, one for describe a job. Each job can take a status and some statuses means the jobs' deadlines must be deleted from the other table.
I can easily SELECT the ...
