User Blade - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:34:45Z http://stackoverflow.com/feeds/user/4064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/241269/method-for-email-testing/241278#241278 5 Answer by Blade for Method for email testing Blade 2008-10-27T20:29:28Z 2009-11-30T20:55:29Z <p>In java you can use <a href="http://quintanasoft.com/dumbster/" rel="nofollow">dumpster</a></p> <p>Its easy to use and you can validate every aspect of the email you are intercepting.</p> <p>It's a Java SMTP server implementation meant for unit testing. (Just make sure you redirect your email to the machine running dumbster...)</p> <p><hr></p> <p>I just found another alternative that do almost the same: <a href="http://www.icegreen.com/greenmail/" rel="nofollow">Greenmail</a></p> <p>Greenmail also support POP3, IMAP with SSL so you can test your client against it.</p> http://stackoverflow.com/questions/806659/what-are-the-best-habits-of-highly-effective-programmers/810294#810294 13 Answer by Blade for What are the best habits of highly effective programmers? Blade 2009-05-01T05:29:02Z 2009-10-29T13:52:01Z <p><a href="http://en.wikipedia.org/wiki/Overengineering" rel="nofollow"><strong>Don't overengineer</strong></a></p> <p>Edit: For me, it means, don't overdo something. Make only what's needed to be done and trust yourself for the future. Also, keep the complexity at the bare minimum. For example, don't use interfaces or proxy or whatever pattern you have on your mind on a beautiful day just for the sake of it. Keep it simple !</p> <p>More info: <a href="http://stackoverflow.com/questions/750112/overengineering-how-to-avoid-it">SO: overengineering-how-to-avoid-it</a></p> http://stackoverflow.com/questions/1608548/how-to-trigger-a-phone-call-when-clicking-a-link-in-a-web-page-on-mobile-phone 1 How to Trigger a phone call when clicking a link in a web page on mobile phone Blade 2009-10-22T16:52:44Z 2009-10-23T16:53:53Z <p>Hi SO,</p> <p>I need to build a web page for mobile device. There's only one thing I still haven't figured out: how can I trigger a phone call through the clic of an image or text.</p> <p>Is there a special url I could enter like the mailto: tag for emails ? </p> <p>Device specific solution are envisagable.</p> <p>I know Iphone automatically recognise phone number and create a link for this but it would be great if this could be done for images too... and also for most mobile devices.</p> <p>Thanks !</p> <p>Fred</p> http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved 1 How to determine if a file will be logically moved or physically moved. Blade 2009-04-10T06:14:32Z 2009-09-16T15:04:58Z <p><strong>The facts:</strong></p> <p>When a file is moved, there's two possibilities:</p> <ol> <li>The source and destination file are on the same partition and only the file system index is updated</li> <li>The source and destination are on two different file system and the file need to be moved byte per byte. (aka copy on move)</li> </ol> <p><strong>The question:</strong></p> <p>How can I determine if a file will be either logically or physically moved ?</p> <p>I'm transferring large files (700+ megs) and would adopt a different behaviors for each situation.</p> <p><hr /></p> <p>Edit:</p> <p>I've already coded a moving file dialog with a worker thread that perform the blocking io call to copy the file a meg at a time. It provide information to the user like rough estimate of the remaining time and transfer rate. </p> <p><strong>The problem is: how do I know if the file can be moved logically before trying to move it physically ?</strong></p> http://stackoverflow.com/questions/550329/how-to-open-a-file-with-the-default-associated-program 1 How to open a file with the default associated program Blade 2009-02-15T04:36:57Z 2009-05-22T14:05:16Z <p>How do I open a file with the default associated program in Java? (for example a movie file) </p> http://stackoverflow.com/questions/396245/add-a-dependency-in-maven/765032#765032 2 Answer by Blade for Add a dependency in Maven Blade 2009-04-19T07:49:42Z 2009-04-19T07:49:42Z <p>You can also specify a dependency not in a maven repository. Could be usefull when no central maven repository for your team exist or if you have a <a href="http://en.wikipedia.org/wiki/Continuous%5Fintegration" rel="nofollow">CI</a> server</p> <pre><code> &lt;dependency&gt; &lt;groupId&gt;com.stackoverflow&lt;/groupId&gt; &lt;artifactId&gt;commons-utils&lt;/artifactId&gt; &lt;version&gt;1.3&lt;/version&gt; &lt;scope&gt;system&lt;/scope&gt; &lt;systemPath&gt;${basedir}/lib/commons-utils.jar&lt;/systemPath&gt; &lt;/dependency&gt; </code></pre> http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#737064 2 Answer by Blade for How to determine if a file will be logically moved or physically moved. Blade 2009-04-10T08:34:23Z 2009-04-12T04:19:36Z <p>Ok I'm on something :)</p> <p>Using <strong><a href="https://jna.dev.java.net/" rel="nofollow">JNA</a></strong> I am able to <strong>call the Win32 API</strong> (and *nix API too) <strong>from java</strong>.</p> <p>I tried calling <code>GetFileInformationByHandle</code> and did got a result BUT the <code>dwVolumeSerialNumber</code> attribute always equals 0 (tried with my C: and D: drive)</p> <p>Then I saw this function on MSDN: <a href="http://msdn.microsoft.com/en-us/library/aa365240%28VS.85,loband%29.aspx" rel="nofollow"><code>MoveFileEx</code></a>. We can read from MSDN that if the flag parametter equals 0, the copy on move feature will be disable. <strong>AND IT DOES !!!!</strong></p> <p>So I will simply call </p> <pre><code>if (!Kernel32.INSTANCE.MoveFileEx(source.getAbsolutePath(), destination.getAbsolutePath(), 0)) { System.out.println("logical move failed"); } </code></pre> <p>Here is the code to put in the <code>Kernel32.java</code> interface (this file can be found in the src.zip package in the download section of the site):</p> <pre><code>boolean MoveFileEx(String lpExistingFileName, String lpNewFileName, int dwFlags); int MOVEFILE_REPLACE_EXISTING = 0x01; int MOVEFILE_COPY_ALLOWED = 0x02; int MOVEFILE_CREATE_HARDLINK = 0x04; int MOVEFILE_WRITE_THROUGH = 0x08; int MOVEFILE_DELAY_UNTIL_REBOOT = 0x10; int MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20; </code></pre> http://stackoverflow.com/questions/736580/are-windows-logo-tm-certified-applications-harder-to-write-in-java/736873#736873 1 Answer by Blade for Are Windows Logo (TM) Certified applications harder to write in Java? Blade 2009-04-10T06:23:21Z 2009-04-10T06:23:21Z <p>For the look and feel, call this at the beggining of your <code>main()</code> function:</p> <pre><code> log.info("Setting java look and feel"); try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { log.warn("Could not set system look and feel", e); } // Make sure we have nice window decorations. JFrame.setDefaultLookAndFeelDecorated(true); JDialog.setDefaultLookAndFeelDecorated(true); </code></pre> http://stackoverflow.com/questions/580419/how-can-i-stop-a-java-while-loop-from-eating-50-of-my-cpu/583537#583537 1 Answer by Blade for How can I stop a Java while loop from eating >50% of my CPU!? Blade 2009-02-24T20:50:59Z 2009-02-24T20:50:59Z <p>While yes, you could do a </p> <pre><code>Thread.sleep(50) </code></pre> <p>like the accepted answer suggest, you could also call </p> <pre><code>Thread.sleep(0) </code></pre> <p>This will tell the processor to do a context switch. Other threads waiting to be executed (like the GUI drawing thread) will then be executed and the machine will stop feeling slow.</p> <p>The sleep(0) way will also maximise the time given by the OS to you application because the thread will immediatly go back in the processor's queue (instead of waiting 50ms before doing so) so if no other thread where waiting, you thread will continue being executed.</p> http://stackoverflow.com/questions/277630/hibernate-jpa-sequence-non-id/282774#282774 0 Answer by Blade for Hibernate JPA Sequence (non-Id) Blade 2008-11-12T01:54:33Z 2008-11-12T01:54:33Z <p>I've been in a situation like you (JPA/Hibernate sequence for non @Id field) and I ended up creating a trigger in my db schema that add a unique sequence number on insert. I just never got it to work with JPA/Hibernate</p> http://stackoverflow.com/questions/266693/using-generic-parameters-with-static-compareobject-method/266789#266789 1 Answer by Blade for Using generic parameters with static compareObject method Blade 2008-11-05T21:33:16Z 2008-11-05T21:33:16Z <p>Here's what you are looking for:</p> <pre><code>public static &lt;T extends Comparable&lt;T&gt;&gt; int compareObject(T o1, T o2) { if ((o1 instanceof String) &amp;&amp; (o2 instanceof String)) return ((String) o1).toUpperCase().compareTo(((String) o2).toUpperCase()); else return o1.compareTo(o2); } </code></pre> http://stackoverflow.com/questions/264309/why-do-people-defend-the-regex-syntax/264314#264314 6 Answer by Blade for Why do people defend the regex syntax? Blade 2008-11-05T04:00:27Z 2008-11-05T15:53:25Z <p>Another problem with regex is that there are many flavours of it. .Net regex vs php regex vs other regex, all look alike but don't give the same result (sometimes no result at all).</p> http://stackoverflow.com/questions/261080/resizable-java-component/261124#261124 0 Answer by Blade for Resizable Java component Blade 2008-11-04T07:06:32Z 2008-11-04T07:06:32Z <p>the JStatusBar ?</p> http://stackoverflow.com/questions/250045/ui-diagram-layout/250195#250195 0 Answer by Blade for UI diagram layout Blade 2008-10-30T13:37:24Z 2008-11-02T00:54:02Z <p>Any uml tool should do the work</p> <p>Take a look at <a href="http://www.umlet.com/" rel="nofollow">UMLet</a> or <a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> as UML editors made in Java.</p> <p>(BTW, Visio Is usually the standard tool for that job)</p> http://stackoverflow.com/questions/252775/advanced-java-generics-question-why-do-we-need-to-specify-redundant-information 0 Advanced Java Generics question: why do we need to specify redundant information Blade 2008-10-31T07:12:40Z 2008-10-31T15:58:27Z <p>Hi,</p> <p>I've got some generic class for my JPA model POJO that goes like this:</p> <pre><code>public interface Identifiable&lt;PK extends Serializable&gt; { PK getUniqueId(); } public interface GenericDao&lt;T extends Identifiable&lt;PK&gt;&gt; { public T findById(PK id); } </code></pre> <p>This code won't compile. For this to work, I need to specify </p> <pre><code>public interface GenericDao&lt;T extends Identifiable&lt;PK&gt;, PK extends Serializable&gt; </code></pre> <p>But that's redundant information !! The fact that T extends Identifiable imply that a PK type will be specified for the Identifiable instance and that this is the type to use for the DAO's PK. </p> <p>How can I make this work without redundant information ?</p> <p>Thanks, Fred</p> <p><hr /></p> <p><strong>Edit:</strong> Simplified example</p> http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252717#252717 3 Answer by Blade for One SVN repository or many? Blade 2008-10-31T06:05:38Z 2008-10-31T06:05:38Z <p>Be aware that when making your decision, <a href="http://www.gentoo-wiki.info/HOWTO_Trac_with_Apache2_SVN_and_multiple_Repositories" rel="nofollow">many SVN repos can share the same config file.</a></p> <p>Example (taken from link above):</p> <p>In shell:</p> <pre><code>$ svn-admin create /var/svn/repos1 $ svn-admin create /var/svn/repos2 $ svn-admin create /var/svn/repos3 </code></pre> <p>File: /var/svn/repos1/conf/svnserve.conf</p> <pre><code>[general] anon-access = none # or read or write auth-access = write password-db = /var/svn/conf/passwd authz-db = /var/svn/conf/authz realm = Repos1 SVN Repository </code></pre> <p>File: /var/svn/conf/authz</p> <pre><code>[groups] group_repos1_read = user1, user2 group_repos1_write = user3, user4 group_repos2_read = user1, user4 ### Global Right for all repositories ### [/] ### Could be a superadmin or something else ### user5 = rw ### Global Rights for one repository (e.g. repos1) ### [repos1:/] @group_repos1_read = r @group_repos1_write = rw ### Repository folder specific rights (e.g. the trunk folder) ### [repos1:/trunk] user1 = rw ### And soon for the other repositories ### [repos2:/] @group_repos2_read = r user3 = rw </code></pre> http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252586#252586 1 Answer by Blade for One SVN repository or many? Blade 2008-10-31T04:20:08Z 2008-10-31T06:03:46Z <p>If you plan to or use tool like trac wich integrate with SVN, it makes more sense to use one repo per project.</p> http://stackoverflow.com/questions/250560/correct-approach-to-properties/250814#250814 0 Answer by Blade for Correct approach to Properties. Blade 2008-10-30T16:25:25Z 2008-10-30T16:25:25Z <p>Approache 2 is defenetly better. </p> <p>Anyway, you should not let other class search through config object. You should injet config taken in the config object ouside the object.</p> <p>Take a look at <a href="http://commons.apache.org/configuration/index.html" rel="nofollow">apache commons configuration</a> for help with configuration Impl.</p> <p>So in the main() you could have</p> <pre><code>MyObject mobj = new MyObject(); mobj.setLookupDelay(appConfig.getMyObjectLookupDelay); mobj.setTrackerName(appConfig.getMyObjectTrackerName); </code></pre> <p>Instead of</p> <pre><code>MyObject mobj = new MyObject(); mobj.setConfig(appConfig); </code></pre> <p>where appConfig is a wrapper around the apache configuration library that do all the lookup of the value base on the name of the value in a config file.</p> <p>this way your object become very easily testable.</p> http://stackoverflow.com/questions/245723/how-jpa-hibernate-deal-with-transaction-when-fetching-object-from-database 0 How JPA (Hibernate) deal with transaction when fetching Object from database Blade 2008-10-29T03:39:47Z 2008-10-29T10:44:12Z <p>Hi all,</p> <p>I'm currently developping an application in java using Hibernate as a persistence manager and JPA as an abstraction of the persistence manage hibernate. </p> <p>I'd like to know the impact of wrapping a result query around a transaction. I know the entity manager must stay open for lazily fetched field bug what about transaction in all this ?</p> <p>Here is a code example with transaction activation/desactivation ability.</p> <pre><code>public List&lt;Exportdata&gt; get(Integer max, EntityManager em, Boolean withTransaction) { EntityTransaction tx = null; try { if (withTransaction) { tx = em.getTransaction(); tx.begin(); } Query query = em.createQuery("from Exportdata"); query.setMaxResults(10); List&lt;Exportdata&gt; list = query.getResultList(); if (withTransaction) tx.commit(); return list; } catch (RuntimeException re) { if (withTransaction) if (tx != null &amp;&amp; tx.isActive()) tx.rollback(); throw re; } } </code></pre> <p>What is the difference between enabling or disabling withTransaction when this function is called ?</p> <p>Thanks all, Fred</p> http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/244022#244022 0 Answer by Blade for Comparing hibernate-mapped dates? Blade 2008-10-28T16:51:17Z 2008-10-28T16:51:17Z <p>Personnaly, I truncate every date I receive in my POJO object with the Apache commons lang package class named DateUtils.</p> <p>See [Apache commons site][1]</p> <p>[1]: <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate" rel="nofollow">http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate</a>(java.util.Date, int)</p> http://stackoverflow.com/questions/42908/where-is-the-chink-in-google-chromes-armor/42969#42969 -1 Answer by Blade for Where is the chink in Google Chrome's armor?? Blade 2008-09-04T01:07:47Z 2008-09-04T01:07:47Z <p>You have to keep in mind that Microsoft primary business is Rich environement (GUI) Application. Web tool is a threat to them as it is platform independant (not promoting they main product).</p> <p>Of course the IE team probably had figured something like that but... Microsoft definetly won't invest a lot of money in IE if what they are selling is a Rich application platform.</p> http://stackoverflow.com/questions/42804/chrome-tabs-and-processes/42895#42895 0 Answer by Blade for Chrome tabs and processes Blade 2008-09-04T00:22:29Z 2008-09-04T00:22:29Z <p>I've also noticed that tabs browsing the same domain ar grouped in the same process. So if you have 3 tab browsing stackoverflow.com, those three tabs will appread as one process</p> http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/42881#42881 1 Answer by Blade for Hello world: what did your first ever computer program do ? Blade 2008-09-04T00:05:21Z 2008-09-04T00:05:21Z <p>Mine was actualy... compiling. And that's exactly what I was trying to do :)</p> http://stackoverflow.com/questions/41504/timezone-lookup-from-latitude-longitude/41533#41533 7 Answer by Blade for Timezone lookup from latitude longitude Blade 2008-09-03T12:15:17Z 2008-09-03T13:04:55Z <p>Take a look at <a href="http://www.geonames.org/" rel="nofollow">Geonames.org</a></p> <p>It's a free webservice that allow you to get a lot of informations from a long/lat</p> <p><a href="http://www.geonames.org/export/client-libraries.html" rel="nofollow">They also provide a free (and open source) Java Client for GeoNames Webservices library (library for other language also provided: ruby, python, perl, lisp...)</a></p> <p>Here's some info you can get from long/lat: <a href="http://www.geonames.org/export/ws-overview.html" rel="nofollow">(complete list of webservices here)</a></p> <ul> <li>Find nearest Address</li> <li>Find nearest Intersection</li> <li>Find nearby Streets</li> <li>Elevation </li> <li>Timezone</li> </ul> http://stackoverflow.com/questions/41118/recommend-a-build-tool-for-a-large-legacy-java-project/41140#41140 1 Answer by Blade for Recommend a build tool for a large legacy Java project. Blade 2008-09-03T03:31:58Z 2008-09-03T10:57:30Z <p>I recently ported a legacy app using ant/custom script and ended up with something great using maven 2. </p> <p>You can easily specifiy a custom directory scructure in the maven 2 pom.xml config file (while this is not the recommended way, is still good enough when going from ant to maven).</p> <p>Also, maven support legacy ant task so you could combine the old legacy config and the nice features of maven.</p> http://stackoverflow.com/questions/4149/how-do-i-use-java-to-read-from-a-file-that-is-actively-being-written/38133#38133 2 Answer by Blade for How do I use Java to read from a file that is actively being written? Blade 2008-09-01T16:31:53Z 2008-09-01T16:31:53Z <p>You might also take a look at java channel for locking a part of a file.</p> <p><a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html</a></p> <p>This function of the <code>FileChannel</code> might be a start</p> <pre><code>lock(long position, long size, boolean shared) </code></pre> <p>An invocation of this method will block until the region can be locked</p> http://stackoverflow.com/questions/41504/timezone-lookup-from-latitude-longitude/41533#41533 Comment by Blade on Timezone lookup from latitude longitude Blade 2009-10-08T14:30:24Z 2009-10-08T14:30:24Z for that, the Java Calendar will probably be more usefull http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved Comment by Blade on How to determine if a file will be logically moved or physically moved. Blade 2009-09-21T17:31:29Z 2009-09-21T17:31:29Z You are right, a copy/delete operation might be needed within the same NTFS partiton. But still, my goal was to determine if a copy/delete would be needed or a simple metadata change would do the job to move the file. The accepted solution addresses this problem. If you have other question or others solutions, feel free to contribute. Thx http://stackoverflow.com/questions/903754/do-you-still-limit-line-length-in-code/904008#904008 Comment by Blade on Do you still limit line length in code? Blade 2009-05-24T21:13:46Z 2009-05-24T21:13:46Z for eclipse formatting, add &quot;//&quot; (without &quot;) at end of line to force the formatter to keep these line on code on different line http://stackoverflow.com/questions/806659/what-are-the-best-habits-of-highly-effective-programmers/810294#810294 Comment by Blade on What are the best habits of highly effective programmers? Blade 2009-05-16T22:51:19Z 2009-05-16T22:51:19Z Here's a slice of my exeperience with overengineering. Hope it clarify things. http://stackoverflow.com/questions/797687/what-is-a-quad-linked-list Comment by Blade on What is a quad linked list? Blade 2009-04-29T05:36:26Z 2009-04-29T05:36:26Z how about this: <a href="http://www.codeproject.com/KB/recipes/4-Way_LinkedList.aspx" rel="nofollow">codeproject.com/KB/recipes/&hellip;</a> http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/426267#426267 Comment by Blade on Can I add jars to maven 2 build classpath without installing them? Blade 2009-04-19T07:42:23Z 2009-04-19T07:42:23Z actually, what he ment is that you dont have to create a pom for the library you are importing into your local repository http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/364188#364188 Comment by Blade on Can I add jars to maven 2 build classpath without installing them? Blade 2009-04-19T07:40:59Z 2009-04-19T07:40:59Z use a systemPath like this one: &quot;&lt;systemPath&gt;${basedir}/lib/BrowserLauncher2-1_3.jar&lt;/systemPath&gt;&quot; ${basedir} is pointing to your project's root. http://stackoverflow.com/questions/598735/should-i-migrate-from-ant-to-maven/598746#598746 Comment by Blade on Should I migrate from Ant to Maven? Blade 2009-04-19T07:37:54Z 2009-04-19T07:37:54Z much simpler management&quot;and standardized workflow is the idea behind maven. Also, dependecy management alone is worth migrating. http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib Comment by Blade on force Maven2 to copy dependencies into target/lib Blade 2009-04-19T07:35:29Z 2009-04-19T07:35:29Z Are you using assemblies ? http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/69058#69058 Comment by Blade on What is your single most favorite command-line trick using Bash? Blade 2009-04-17T09:27:10Z 2009-04-17T09:27:10Z if one fail, the other command wont be executed (fail fast, like in programmation) http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m/52640#52640 Comment by Blade on Payment Processors - What do I need to know if I want to accept credit cards on my website? Blade 2009-04-17T08:47:30Z 2009-04-17T08:47:30Z One of the best I've seen.... +1 http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/736905#736905 Comment by Blade on How to determine if a file will be logically moved or physically moved. Blade 2009-04-14T05:11:03Z 2009-04-14T05:11:03Z Is it ok for you if I accept my own answer ? http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#737064 Comment by Blade on How to determine if a file will be logically moved or physically moved. Blade 2009-04-13T18:17:02Z 2009-04-13T18:17:02Z Actually, I was comparing two files on two differents disks so for my little test, I didin't want to create a new file. But you're right, in the case we are interested in, it would make sense to create the target file at this stage. http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#737064 Comment by Blade on How to determine if a file will be logically moved or physically moved. Blade 2009-04-12T04:17:30Z 2009-04-12T04:17:30Z I got it using CreateFile wich return a file handle. When you call CreateFile, you have to specify that a new file must not be created so it will fail if the file does not exist. http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/736905#736905 Comment by Blade on How to determine if a file will be logically moved or physically moved. Blade 2009-04-10T07:41:42Z 2009-04-10T07:41:42Z Oh, I see. I'm currently looking toward JNA (<a href="https://jna.dev.java.net/" rel="nofollow">jna.dev.java.net</a>) for kernel32 and unix API access.