Tagged Questions
Delete is computer terminology for remove or erase.
167
votes
3answers
26k views
How do I delete a Git branch both locally and in Github?
I created a bugfix branch to fix a bug on a project that I had forked on Github. I gave a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix ...
72
votes
14answers
136k 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 ...
54
votes
7answers
41k 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 ...
51
votes
11answers
22k 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, ...
40
votes
18answers
22k views
How to delete all datastore in Google App Engine?
Does anyone know how to delete all datastore in Google App Engine?
37
votes
5answers
31k 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 ...
36
votes
14answers
41k 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 ...
35
votes
12answers
3k 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 ...
32
votes
6answers
6k views
Why should one replace default new and delete operators?
Why should 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:
...
30
votes
12answers
34k 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 ...
30
votes
3answers
6k 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 ...
30
votes
9answers
15k views
In what cases do I use malloc vs new?
I am new to C++ programming but have a solid background in C#, Java and PHP. I see in C++ there are multiple ways to allocate and free data and I understand that when you call malloc you should call ...
29
votes
17answers
3k 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 ...
28
votes
2answers
15k 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 ...
27
votes
4answers
14k 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 ...
25
votes
9answers
10k 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 none such function. Or does it?
I know it's possible to change the system wide ...
25
votes
15answers
6k 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.)
Thanks,
Stefan
24
votes
11answers
4k 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 ...
22
votes
8answers
875 views
what does “delete from table where NULL = NULL” means?
what does delete from table where NULL = NULL means ?
21
votes
4answers
391 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:
...
21
votes
5answers
606 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)?
19
votes
11answers
1k views
NULL check before deleting an object?
This came up as one of the code review comments.
Is it a good idea to check for NULL before calling delete for any object?
I do understand delete operator checks for NULL internally and is ...
19
votes
10answers
17k 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 ...
19
votes
6answers
27k 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, ...
18
votes
4answers
565 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 ...
17
votes
5answers
351 views
What is the purpose of the delete operator in Javascript?
The behaviour of the delete operator seems very complicated and there are many misunderstandings about what it actually does. To me, it seems that reassigning something to undefined will more reliably ...
17
votes
4answers
349 views
Why can't the runtime environment decide to apply delete or delete[] instead of the programmer?
I've read that the delete[] operator is needed because the runtime environment does not keep information about if the allocated block is an array of objects that require destructor calls or not, but ...
17
votes
8answers
667 views
Why can we delete arrays, but not know the length in C/C++? [closed]
Possible Duplicate:
C programming : How does free know how much to free?
How is is that it is possible for us to delete dynamically allocated arrays, but we can't find out how many elements ...
17
votes
10answers
17k 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 ...
17
votes
9answers
2k views
Database: To delete or not to delete records
I don't think I am the only person wondering about this. What do you usually practice about database behavior? Do you prefer to delete a record from the database physically? Or is it better to just ...
16
votes
7answers
2k views
How can I make my .NET application erase itself?
How can I make my C# app erase itself (self-destruct)? Here's two ways that I think might work:
Supply another program that deletes the main program. How is this deleter program deleted then, ...
16
votes
3answers
25k views
How to send PUT, DELETE HTTP request in HttpURLConnection? Looks like not working
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, ...
16
votes
6answers
3k 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;
...
16
votes
5answers
2k views
Is it possible with Java to delete to the Recycle Bin?
Java is the key here. I need to be able to delete files but users expect to be able to "undelete" from the recycle bin. As far as I can tell this isn't possible. Anyone know otherwise?
15
votes
4answers
404 views
Why can't you access the size of a new[]'d array?
When you allocate an array using new [], why can't you find out the size of that array from the pointer? It must be known at run time, otherwise delete [] wouldn't know how much memory to free...
...
15
votes
5answers
3k 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:
...
15
votes
3answers
12k 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 ...
15
votes
6answers
18k 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.
14
votes
7answers
2k views
delete a NULL pointer does not call overloaded delete when destructor is written
class Widget
{
public:
Widget() {
cout<<"~Widget()"<<endl;
}
~Widget() {
cout<<"~Widget()"<<endl;
}
void* ...
13
votes
4answers
9k 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 ...
13
votes
12answers
30k 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 ...
13
votes
8answers
16k 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
...
12
votes
4answers
169 views
*Really* deleting cookies with javascript
The way to delete cookies in javascript is to set the expiry date to be in the past. Now this doesn't actually delete the cookie, at least in Firefox. It just means the cookie will be deleted on ...
12
votes
6answers
401 views
what will happen if you delete this in C++ [closed]
Possible Duplicate:
Is it OK to use “delete this” to delete the current object?
I just saw some code where they have done delete this; in a class function, I know that this is ...
12
votes
9answers
983 views
How to free memory in try-catch blocks?
I have a simple question hopefully - how does one free memory which was allocated in the try block when the exception occurs? Consider the following code:
try
{
char *heap = new char [50];
...
12
votes
11answers
22k 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 ...
12
votes
6answers
5k views
Removing duplicate rows from table in Oracle
I'm testing something in Oracle and populated a table with some sample data, but in the process I accidentally loaded duplicate records, so now I can't create a primary key using some of the columns.
...
11
votes
2answers
520 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 ...
11
votes
7answers
3k 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 ...
11
votes
2answers
9k views
How to recursively delete an entire directory with PowerShell V2
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 ...