Tagged Questions

Overwriting is a process of replacing content with other content in place. It can be physically replaced on storage, or overridden with newer version of content type.

learn more… | top users | synonyms

9
votes
1answer
1k views

Windows: Overwrite File In Use

I am trying to write a utility that will allow moving files in Windows, and when it finds a file in use, will set that file to be moved on reboot. It seems that MoveFileEx ...
8
votes
1answer
320 views

Only copy modified files in maven-war-plugin

I'm currently using maven 3.x with the maven-war-plugin. For developer builds I would like to be able to use the war:exploaded goal, but only copy resources that have changed. Is there a way to do ...
8
votes
1answer
4k views

WiX— always overwrite the previous version

I have an installer of an application that needs to install over any existing version, regardless of version number. Instead, I've got an installer that constantly says that I need to go to ...
6
votes
5answers
156 views

Overriding hashCode in Java for a specific case

I know there are other questions about the general best practices while over riding hashCode and equals, but I have a very specific question. I have a class that has as an instance variable, an ...
6
votes
3answers
2k views

How do I overwrite a log file in log4j?

I have a log file that has the following appender added to it : logger.addAppender(new FileAppender(new PatternLayout(),"log.txt")); the thing is, each time I'm running my application, additional ...
5
votes
3answers
109 views

Make output of command appear on single line [closed]

Is it possible to get the output of a command - for example tar - to write each line of output to one line only? Example usage: tar -options -f dest source | [insert trickery here] and the output ...
5
votes
3answers
143 views

Wrapping functions and function.length

Let's consider I have the following code /*...*/ var _fun = fun; fun = function() { /*...*/ _fun.apply(this, arguments); } I have just lost the .length data on _fun because I tried to wrap it ...
4
votes
1answer
145 views

Python tarfile - overwrite existing read-only files?

I'm attempting to use Python's tarfile module to extract a tar.gz archive. I'd like the extraction to overwrite any target files it they already exist - this is tarfile's normal behaviour. However, ...
4
votes
2answers
195 views

Overwriting Constructor of a class from outisde

So, the question is simple to aks: How can I overwrite the constructor of a class from the outside. The Problem itself is, that i have a class which is already compiled, and it already has some ...
4
votes
3answers
3k views

Read and overwrite a file in Python

Currently I'm using this: f = open(filename, 'r+') text = f.read() text = re.sub('foobar', 'bar', text) f.seek(0) f.write(text) f.close() But the problem is that the old file is larger than the new ...
4
votes
5answers
13k views

How do I Insert or Update (or overwrite) a record using NHibernate?

I need to write a row to the database regardless of whether it already exists or not. Before using NHibernate this was done with a stored procedure. The procedure would attempt an update and if no ...
3
votes
2answers
100 views

Overwrite {} in python

I want to make a dict int which you can access like that: >>> my_dict["property'] = 3 >>> my_dict.property 3 So I've made this one: class DictAsMember(dict): def ...
3
votes
3answers
525 views

Python - Move and overwrite files and folders

I have a directory, 'Dst Directory', which has files and folders in it and I have 'src Directory' which also has files and folders in it. What I want to do is move the contents of 'src Directory' to ...
3
votes
2answers
369 views

Disable a built-in function in javascript (alert)

Simple: I want to disable/overwrite alert(). Can I do this? More importantly, is it right to do this? What about strict mode?
3
votes
2answers
176 views

problems with extended classes and overwrite with methods

I have a .net website written in C# and will make functionalities that other developers can use. So I will make some default implementation and a developer can overwrite some methods Example: i have ...
3
votes
3answers
307 views

How do I overwrite a file currently being read by Python

I am not too sure the best way to word this, but what I want to do, is read a pdf file, make various modifications, and save the modified pdf over the original file. As of now, I am able to save the ...
3
votes
3answers
886 views

Force derived class to call base function

If I derive a class from another one and overwrite a function, I can call the base function by calling Base::myFunction() inside the implementation of myFunc in the derived class. However- is there a ...
2
votes
1answer
39 views

How do I prevent 2 js files to be overwrite in my HTML code?

How do I prevent 2 .js files to be overwrite in my html code? I have 2 .js files one for scroll bars and another one for dropdown menu. when I import both files in my template code, the first one ...
2
votes
4answers
66 views

Insert Where Not Exists-Without Primary Key

I have 3 tables: dentists, groups, and groupdentlink. Many dentists link to many groups through the groupdentlink table. So I'm trying to make a query where it will insert rows into groupdentlink ...
2
votes
4answers
111 views

Linux - how to ignore cp: overwrite

Do you any one use cp command to ignore cp: overwrite? I have tried with cp -rf /zzz/zzz/* /xxx/xxx, but still I am experiencing same overwrite promotion for each and every files and folder. looking ...
2
votes
2answers
124 views

Updating a file with <fstream> library (overwriting just a specific section)

I want to ask if there is any way to update say a text file with a content of "ooooo" to "ooXXo" using the fstream library. I know there is a way with cstdio but I don't want to use that one because ...
2
votes
2answers
474 views

Overwrite resource file with maven assembly plugin

I use maven-assembly-plugin with "jar-with-dependencies" to package jar. There are 2 dependencies artifact having log-back.xml. The second artifact is depend on the first one. I want to have ...
2
votes
6answers
1k views

How to write data to a text file in C# without overwriting the current data

Greetings, I can't seem to figure out how to write data to a file without overwriting it. I know I can use File.appendtext but I am not sure how to plug that into my syntax. Here is my code: ...
2
votes
3answers
299 views

C++ how to overwrite a character in console, return carriage to start of line doesn't seem to work

My question is, how do I get the numbers 10 - 0 to print out on the same line, overwriting each other using either a WIN32 or GNUC compiler in a simple manner like my code below: This is what I have ...
2
votes
1answer
347 views

How do I overwrite text vb.net

I once got taught how to append a text file ussing the following code but now i want to overwrite the file every time i press button one (nobodys taught me that) Private Sub Button1_Click(ByVal ...
2
votes
3answers
73 views

setting value is changing key name

var test = { one: {}, two: {}, }; test['two'].parent = test['one']; what i want test to have: test = { one: {}, two: { parent: {}, } what it actually has: test = { parent: {}, ...
2
votes
5answers
4k views

Java FileWriter overwrite

I have a piece of code that generates new data whenever there is new data available as InputStream . The same file is overwritten everytime. Sometimes the file becomes 0 kb before it gets written. A ...
1
vote
1answer
17 views

Overwriting dictionary contents vb.net

I have created a service that updates dictionaries and outputs an xml file of the contents. It will do it fine first time round, but then i get the following exception when it tries to do it the ...
1
vote
2answers
42 views

PHP Identical Variable Names

I'm really inexperienced when it comes to PHP and hoping someone can clarify something for me when it comes to how variables are handled in PHP. I have a PHP Web App that I created and needed to ...
1
vote
1answer
68 views

Java - Do not overwrite with bufferedwriter

I have a program that add persons to an arraylist. What I'm trying to do is add these persons to a text file as well but the program overwrites the first line so the persons get erased. How do I tell ...
1
vote
3answers
27 views

CSS overwrites only some values

I have this CSS declaration: .columns { width: 950px; font-family: verdana, arial; font-weight: normal; font-size: 13px; line-height: 21px; text-align: justify; color: ...
1
vote
1answer
98 views

Why is my default attribute accessor not being overwritten?

I have an Article model. The database schema has several columns including 'title'. I am trying to provide my own getter in place of the method_missing-provided getter. At present I am trying simply: ...
1
vote
1answer
121 views

maven overwrite resource file in dependency

I have two maven modules, A and B. A is a dependency of B. Both modules have a resource file named default.properties located in src/main/resources. I need to keep the filename's the same and the ...
1
vote
1answer
145 views

Android Package Installer single instance

I have a private app which is not published via market so I created my own update mechanism from within a service. My problem is if the user presses uninstall, the install new version will appear, and ...
1
vote
2answers
120 views

How to extend django admin view?

i want to display additional sidebar in my django admin index. I have created templates/admin/index.html and it show up. Now i need some data from model. To do this I have created index function in ...
1
vote
1answer
46 views

Override YUI Javascript Object

I'm struggling with trying to modify some Javascript code. I know what I want to change, but it is within a huge JS file of a regularly updated product. It's basically a small customization to a ...
1
vote
2answers
70 views

Can I manually override inherited methods?

That's a very imperfect title... public class A extends AbstractList { public boolean addAll(int index, Collection<E> what){} } but Eclipse gives me the compile error Name clash: The ...
1
vote
2answers
369 views

how to overwrite data in a txt file? [closed]

Possible Duplicate: Can any one tell why the previous data is still displayed while saving data using StreamWriter I have wpf c# application, that reads and writes to a .txt file, i know ...
1
vote
2answers
127 views

Mercurial: How to overwrite files in a particular folder?

I am working on a new project with three other developers, we are all new to Mercurial. A post build event is created in Visual Studio 2010 to copy DLLs to a common folder. Each time anyone commits ...
1
vote
1answer
274 views

Overwrite jQuery to execute code after element has become visible - how to?

I am developing a small javascript framework for internal use in our company. In some cases our framework is overwriting basic jQuery functionality in order to handle internal logic or fix browser ...
1
vote
2answers
145 views

Bash: Symlink Following

I've got a file tree containing a bunch of data I've generated. I've decided that at several stages of the data generation, I'd like to try some different configuration options in the programs that ...
1
vote
1answer
115 views

Rewriting a dll file when using MEF and WCF

On my current project, I'm sending dll files to clients using a WCF service. The dll files contain UserControls which the clients use to visualize data. However, sometimes new UserControls are ...
1
vote
3answers
81 views

svn - how to handle directories which get overriden

I was just wondering if there's a workaround for adding files/directories to your svn directories which get overwritten completely without ruining the svn structure and having to export or start from ...
1
vote
1answer
248 views

JOIN question for MySQL Merging Queries--Overwrite or Merge two rows from the same table

It's difficult to explain this, so I'll do my best. I have a table that consists of default rows (noted by a NULL specificSiteID) and override rows (noted by NON-NULL specificSiteIDs.) Both types of ...
1
vote
4answers
1k views

C++ Overriding… overwriting?

I know what overriding is in C++. But, is there overwriting? If so, what does it mean? Thanks.
1
vote
2answers
234 views

Protecting pre-filled form fields from being overwritten by user (Rails)

I have a signup form of which most fields are pre-filled using user's Facebook account. I would like to make some fields, like - email, impossible for user to overwrite. Any ideas how to solve this? ...
1
vote
2answers
146 views

simultaneous edits to xml file in C#

I am working on an application that reads and makes edits to an xml file but using the XDocument class Load() and Save() methods. If another application, or another instance of my application is ...
1
vote
2answers
196 views

how to overwrite existing files in batch

i got the following batch to copy and move but i also need it to over write the file its replacing how do i do that though? xcopy /s c:\mmyinbox\test.doc C:\myoutbox
1
vote
3answers
1k views

Overwrite file using append mode for fopen

I am using fopen to write to a binary file and using the cstdio (stdio.h) library due to legacy code and it must be cross-platform compatible with Windows and Linux. For the prototype, FILE * fopen ...
1
vote
1answer
154 views

django forms overwrite data when saved

If a have a form, with the data from a user, let's say a CV, and i save the data from the form into a database, but i don't want that a CV from the same user to be stored in the database more than ...

1 2 3