User James Hopkin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:04:00Z http://stackoverflow.com/feeds/user/11828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/102459/why-does-stdstack-use-stddeque-by-default/102859#102859 5 Answer by James Hopkin for Why does std::stack use std::deque by default? James Hopkin 2008-09-19T15:28:25Z 2009-09-14T15:20:48Z <p>See Herb Sutter's <a href="http://www.gotw.ca/gotw/054.htm" rel="nofollow">Guru of the Week 54</a> for the relative merits of vector and deque where either would do.</p> <p>I imagine the inconsistency between priority_queue and queue is simply that different people implemented them.</p> http://stackoverflow.com/questions/892133/should-i-prefer-pointers-or-references-in-member-data/892303#892303 3 Answer by James Hopkin for Should I prefer pointers or references in member data? James Hopkin 2009-05-21T10:41:37Z 2009-07-14T10:52:56Z <p>Avoid reference members, because they restrict what the implementation of a class can do (including, as you mention, preventing the implementation of an assignment operator) and provide no benefits to what the class can provide.</p> <p>Example problems:</p> <ul> <li>you are forced to initialise the reference in each constructor's initialiser list: there's no way to factor out this initialisation into another function (until C++0x, anyway)</li> <li>the reference cannot be rebound or be null. This can be an advantage, but if the code ever needs changing to allow rebinding or for the member to be null, all uses of the member need to change</li> <li>unlike pointer members, references can't easliy be replaced by smart pointers or iterators as refactoring might require</li> </ul> http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1097558#1097558 3 Answer by James Hopkin for Name resolution in templates James Hopkin 2009-07-08T11:45:47Z 2009-07-14T09:28:29Z <p>The article is correct about whether <code>d++</code> should compile.</p> <p>Visual C++ does not do two-phase template instantiation - it does pretty much all its parsing at instatiation time.</p> <p>Gcc and <a href="http://www.comeaucomputing.com/tryitout/" rel="nofollow">Comeau</a> will give the correct error and will call the correct <code>f</code>.</p> http://stackoverflow.com/questions/1016928/is-there-any-direct-way-to-do-what-pinptr-does 1 Is there any direct way to do what pin_ptr does? James Hopkin 2009-06-19T08:36:27Z 2009-07-10T15:31:24Z <p>Can the behaviour of pin_ptr be achieved directly in C++/CLI? For example, is it possible to write CLR code directly, something like <code>asm</code> for native apps?</p> <p>An example of what I would like to do is a wrapper for a <code>pin_ptr</code> (impossible because of the restrictions on <code>pin_ptr</code>s).</p> <pre><code>class WrappedPtr { public: explicit WrappedPtr(String^ s) { pin = PtrToStringChars(s); // I want to pin s for the lifetime of this object (only used on the stack) } }; </code></pre> http://stackoverflow.com/questions/1092561/is-returning-a-stdlist-costly/1092605#1092605 0 Answer by James Hopkin for Is returning a std::list costly? James Hopkin 2009-07-07T14:17:24Z 2009-07-07T14:17:24Z <p>It may be costly, in that it will copy every element in the list. More importantly, it has different behaviour: do you want a copy of the list or do you want a pointer to the original list?</p> http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python 1 Preventing invoking C types from Python James Hopkin 2009-07-03T14:49:31Z 2009-07-06T10:38:44Z <p>What's the correct way to prevent invoking (creating an instance of) a C type from Python?</p> <p>I've considered providing a <code>tp_init</code> that raises an exception, but as I understand it that would still allow <code>__new__</code> to be called directly on the type.</p> <p>A C function returns instances of this type -- that's the only way instances of this type are intended to be created.</p> <p><strong>Edit:</strong> My intention is that users of my type will get an exception if they accidentally use it wrongly. The C code is such that calling a function on an object incorrectly created from Python would crash. I realise this is unusual: all of my C extension types so far have worked nicely when instantiated from Python. My question is whether there is a usual way to provide this restriction.</p> http://stackoverflow.com/questions/39746/hgtortoise-in-vista-64-bit-not-showing-the-context-menu/1074373#1074373 0 Answer by James Hopkin for HgTortoise in Vista 64-bit not showing the context menu James Hopkin 2009-07-02T13:35:15Z 2009-07-02T13:35:15Z <p>I've just noticed that the context menu and icons work from a file open dialog from some apps (on Vista). I now just use Notepad++'s file open dialog, since I use Notepad++ all the time.</p> <p>It seems to have to be the simple open dialog, not the new one Notepad has, for example.</p> <p>Maybe someone can check if this trick works in Windows 7.</p> http://stackoverflow.com/questions/1063037/how-can-i-make-a-list-of-files-modification-dates-and-paths/1063120#1063120 2 Answer by James Hopkin for How can I make a list of files, modification dates and paths? James Hopkin 2009-06-30T11:15:01Z 2009-06-30T11:15:01Z <pre><code>import os import time for root, dirs, files in os.walk('your_root_directory'): for f in files: modification_time_seconds = os.stat(os.path.join(root, f)).st_mtime local_mod_time = time.localtime(modification_time_seconds) print '%s %s.%s.%s %s' % (f, local_mod_time.tm_mon, local_mod_time.tm_mday, local_mod_time.tm_year, root) </code></pre> http://stackoverflow.com/questions/1032602/template-ing-a-for-loop-in-c/1033294#1033294 5 Answer by James Hopkin for template-ing a for loop in C++? James Hopkin 2009-06-23T15:25:52Z 2009-06-23T15:25:52Z <p>This is the way to do it directly:</p> <pre><code>template &lt;int i, int j&gt; struct inner { static void value() { A(row&lt;i,j&gt;::value, column&lt;i,j&gt;::value) = f&lt;i,j&gt;::value; inner&lt;i, j+1&gt;::value(); } }; template &lt;int i&gt; struct inner&lt;i, J&gt; { static void value() {} }; template &lt;int i&gt; struct outer { static void value() { inner&lt;i, 0&gt;::value(); outer&lt;i+1&gt;::value(); } }; template &lt;&gt; struct outer&lt;I&gt; { static void value() {} }; void test() { outer&lt;0&gt;::value(); } </code></pre> <p>You can pass <code>A</code> through as a parameter to each of the <code>value</code>s if necessary.</p> http://stackoverflow.com/questions/1032602/template-ing-a-for-loop-in-c/1032915#1032915 1 Answer by James Hopkin for template-ing a for loop in C++? James Hopkin 2009-06-23T14:29:42Z 2009-06-23T14:29:42Z <p><code>f</code> would need to return a <code>double</code> - that can't be done at compile time.</p> http://stackoverflow.com/questions/1018189/problems-implementing-the-observer-pattern/1018850#1018850 0 Answer by James Hopkin for Problems implementing the "Observer" pattern James Hopkin 2009-06-19T16:22:55Z 2009-06-19T16:22:55Z <p>How about having a member iterator called <code>current</code> (initialised to be the <code>end</code> iterator). Then</p> <pre><code>void remObserver(Observer* obs) { list&lt;Observer*&gt;::iterator i = observers.find(obs); if (i == current) { ++current; } observers.erase(i); } void notifyAll() { current = observers.begin(); while (current != observers.end()) { // it's important that current is incremented before notify is called Observer* obs = *current++; obs-&gt;notify(); } } </code></pre> http://stackoverflow.com/questions/1013449/combining-c-and-python-functions-in-a-module 0 Combining C and Python functions in a module James Hopkin 2009-06-18T15:41:00Z 2009-06-19T00:59:43Z <p>I have a C extension module, to which I would like to add some Python utility functions. Is there a recommended way of doing this?</p> <p>For example:</p> <pre><code>import my_module my_module.super_fast_written_in_C() my_module.written_in_Python__easy_to_maintain() </code></pre> <p>I'm primarily interested in Python 2.x.</p> http://stackoverflow.com/questions/1011790/why-does-stdstring-findtext-stdstringnpos-not-return-npos/1011858#1011858 3 Answer by James Hopkin for Why does std::string.find(text,std::string:npos) not return npos? James Hopkin 2009-06-18T09:56:07Z 2009-06-18T09:56:07Z <p><code>std::string::npos</code> is not a valid argument for <code>std::string::find</code>.</p> <p>The definition of <code>find</code> in the Standard only mentions <code>npos</code> as a possible return value, not a start position.</p> http://stackoverflow.com/questions/1008019/c-singleton-design-pattern/1008112#1008112 0 Answer by James Hopkin for C++ Singleton design pattern. James Hopkin 2009-06-17T16:15:51Z 2009-06-17T16:15:51Z <p>Another non-allocating alternative: create a singleton, say of class <code>C</code>, as you need it:</p> <pre><code>singleton&lt;C&gt;() </code></pre> <p>using</p> <pre><code>template &lt;class X&gt; X&amp; singleton() { static X x; return x; } </code></pre> <p>Neither this nor Cătălin's answer is automatically thread-safe in current C++, but will be in C++0x.</p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006087#1006087 1 Answer by James Hopkin for How to detect whether there is a specific member variable in class? James Hopkin 2009-06-17T09:49:48Z 2009-06-17T10:06:00Z <p>Try this:</p> <pre><code>template&lt;class X, bool=&amp;X::x&gt; struct Check_x_t; template&lt;class P&gt; bool Check_x(P p, Check_x_t&lt;P&gt;* = 0) { return true; } template&lt;class P&gt; bool Check_x(P p, ...) { return false; } struct P1 {int x; }; struct P2 {int X; }; void test() { P1 p1; P2 p2; Check_x(p1); // returns true Check_x(p2); // returns false } </code></pre> <p>The following link explains why your first solution is failing on certain compilers:</p> <p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html</a></p> <p>(it fails on Comeau as well as VC).</p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005589#1005589 1 Answer by James Hopkin for How to detect whether there is a specific member variable in class? James Hopkin 2009-06-17T07:28:18Z 2009-06-17T07:28:18Z <p>The second answer (litb's) to this shows how to detect a member:</p> <p><a href="http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence">http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence</a></p> http://stackoverflow.com/questions/1002550/improvements-to-c-cli-in-net-framework-releases 1 Improvements to C++/CLI in .NET framework releases James Hopkin 2009-06-16T16:22:25Z 2009-06-16T17:10:46Z <p>There have been substantial features and improvements in C# with each new release of the .NET framework, and in the upgrade from .NET1.0 to .NET2.0, Managed C++ was replaced with C++/CLI, which was a great improvement.</p> <p>Have there been any improvements in C++/CLI since .NET2.0?</p> http://stackoverflow.com/questions/1001420/how-to-define-a-function-with-same-name-which-is-present-in-different-file/1001640#1001640 0 Answer by James Hopkin for How to define a function with same name which is present in different file James Hopkin 2009-06-16T13:55:04Z 2009-06-16T13:55:04Z <p>One way is to document that <em>if</em> Winbase.h is included, it must be included before this header. Normally that would be a horrible requirement, but with Windows headers, it's pretty much a given that you're in for a world of pain unless you include them first (normally in a precompiled header, as @sharptooth says).</p> <p>That done, put this in your header:</p> <pre><code>#ifdef UpdateResource #pragma push_macro("UpdateResource") #undef UpdateResource #endif </code></pre> <p>Anyone simultaneously needing the original definition of <code>UpdateResource</code> and your class just needs to put</p> <pre><code>#pragma pop_macro("UpdateResource") </code></pre> http://stackoverflow.com/questions/999727/cannot-convert-from-const-wchart-to-tchar/1000386#1000386 0 Answer by James Hopkin for Cannot convert from 'const wchar_t *' to '_TCHAR *' James Hopkin 2009-06-16T09:18:49Z 2009-06-16T09:18:49Z <p><code>strGroupName</code> should also be a pointer to <code>const</code>.</p> <pre><code>const _TCHAR* strGroupName = _tcschr(strTempName, 92); </code></pre> <p>No need to declare it until the call to initialise it.</p> http://stackoverflow.com/questions/1000303/is-there-a-faster-way-to-detect-object-type-at-runtime-than-using-dynamiccast/1000318#1000318 0 Answer by James Hopkin for Is there a faster way to detect object type at runtime than using dynamic_cast? James Hopkin 2009-06-16T09:00:18Z 2009-06-16T09:00:18Z <p>Would comparing <code>type_info</code>s be any faster? (call <code>typeid</code> on parameter <code>param</code>)</p> http://stackoverflow.com/questions/994593/how-to-do-an-integer-log2-in-c/996177#996177 0 Answer by James Hopkin for How to do an integer log2() in C++? James Hopkin 2009-06-15T13:42:13Z 2009-06-15T13:42:13Z <p>Compile-time solution, anyone?</p> <pre><code>template &lt;int N&gt; struct log2 { static const int value = log2&lt;(N&gt;&gt;1)&gt;::value + 1; }; template &lt;&gt; struct log2&lt;0&gt; { static const int value = -1; }; int n = log2&lt;128&gt;::value; // n is 7 </code></pre> http://stackoverflow.com/questions/995281/bus-error-segmentation-fault-for-stdvectorint-declaration/995736#995736 0 Answer by James Hopkin for bus error/segmentation fault for std::vector<int> declaration James Hopkin 2009-06-15T12:01:24Z 2009-06-15T12:01:24Z <p>Does QSweep's 2-parameter constructor call functions in its initialiser list, e.g.</p> <pre><code>QSweep(const MxDouble2d&amp; myPoints, const MxInt2d&amp; myEdges) : sweepEvents(MemberFunctionCall()) ... </code></pre> <p>That's something that is dependent on the declaration order of the class members, and so might cause your problem. The member function might call the member vector before it has been constructed.</p> http://stackoverflow.com/questions/984394/why-not-infer-template-parameter-from-constructor/986197#986197 1 Answer by James Hopkin for Why not infer template parameter from constructor? James Hopkin 2009-06-12T11:36:09Z 2009-06-12T11:36:09Z <p>Deduction of types is limited to template functions in current C++, but it's long been realised that type deduction in other contexts would be very useful. Hence C++0x's <code>auto</code>.</p> <p>While <em>exactly</em> what you suggest won't be possible in C++0x, the following shows you can get pretty close:</p> <pre><code>template &lt;class X&gt; Variable&lt;typename std::remove_reference&lt;X&gt;::type&gt; MakeVariable(X&amp;&amp; x) { // remove reference required for the case that x is an lvalue return Variable&lt;typename std::remove_reference&lt;X&gt;::type&gt;(std::forward(x)); } void test() { auto v = MakeVariable(2); // v is of type Variable&lt;int&gt; } </code></pre> http://stackoverflow.com/questions/981400/what-happens-if-a-throw-statement-is-executed-outside-of-catch-block/981435#981435 13 Answer by James Hopkin for What happens if a throw; statement is executed outside of catch block? James Hopkin 2009-06-11T14:28:00Z 2009-06-11T14:28:00Z <p>From the Standard, 15.1/8</p> <blockquote> <p>If no exception is presently being handled, executing a <em>throw-expression</em> with no operand calls <code>std::terminate</code>().</p> </blockquote> http://stackoverflow.com/questions/981186/chain-iterator-for-c/981296#981296 1 Answer by James Hopkin for chain iterator for C++ James Hopkin 2009-06-11T14:04:21Z 2009-06-11T14:17:21Z <p>I've written one before (actually, just to chain two pairs of iterators together). It's not that hard, especially if you use boost's <code>iterator_facade</code>.</p> <p>Making an input iterator (which is effectively what Python's <code>chain</code> does) is an easy first step. Finding the correct category for an iterator chaining a combination of different iterator categories is left as an exercise for the reader ;-).</p> http://stackoverflow.com/questions/980015/variable-initialising-and-constructors/980108#980108 1 Answer by James Hopkin for Variable initialising and constructors James Hopkin 2009-06-11T09:11:27Z 2009-06-11T09:11:27Z <p>No, the variable is only left uninitialised in the first case.</p> <p>For a member that is a class with a user-defined constructor, the situation is simple: a constructor is always called.</p> <p>Built-in types (and 'plain old data' structs) may be left uninitialised, as in your first example. Although they don't have user-supplied constructors, using the construction syntax (your other two examples) initialises them to zero.</p> <p>The reason for this slightly tricky rule is to avoid undue overhead; for example if you defined:</p> <p>struct S { int array[1024*1024]; };</p> <p>with the intention of only assigning values as you needed them, you wouldn't want the compiler to whitewash 4Mb of memory with zeroes whenever you construct one.</p> http://stackoverflow.com/questions/974512/ignoring-source-code-in-the-debugger 3 Ignoring source code in the debugger James Hopkin 2009-06-10T09:16:34Z 2009-06-10T09:47:51Z <p>How can I get the Visual Studio debugger to ignore certain source files? In other words, I would like it to behave as if the functions defined in those files had no debugging info, so that:</p> <ul> <li>When stepping into code, it will ignore functions defined in those files (a smart pointer <code>operator-&gt;</code> is an example where this is useful)</li> <li>If the debugger stops due to an exception or <code>_asm int 3</code> in one of these files, it shows a function further up the callstack instead (handy for assert code)</li> </ul> <p>VC6 had a (undocumented?) feature along these lines, if my long term memory isn't playing tricks on me.</p> <p>I'm using Visual Studio 2005, but the answer for each version of Visual Studio, if different, would be useful.</p> http://stackoverflow.com/questions/974219/concurrently-iterating-through-even-and-odd-items-of-list/974577#974577 1 Answer by James Hopkin for concurrently iterating through even and odd items of list James Hopkin 2009-06-10T09:33:42Z 2009-06-10T09:33:42Z <p>Try:</p> <pre><code>def alternate(i): i = iter(i) while True: yield(i.next(), i.next()) &gt;&gt;&gt; list(alternate(range(10))) [(0, 1), (2, 3), (4, 5), (6, 7), (8, 9)] </code></pre> <p>This solution works on any sequence, not just lists, and doesn't copy the sequence (it will be far more efficient if you only want the first few elements of a long sequence).</p> http://stackoverflow.com/questions/956310/eliminating-the-inter-compiler-incompatibility-issue-with-c-dynamic-libraries/956647#956647 3 Answer by James Hopkin for eliminating the inter-compiler incompatibility issue with C++ dynamic libraries James Hopkin 2009-06-05T15:52:29Z 2009-06-07T17:25:13Z <p>I think your approach is right. I'd put it this way:</p> <ul> <li>For a dll to be usable by different compilers, it must contain only C functions (they can be compiled using a C++ compiler using <code>extern C</code>)</li> <li>As usual with dlls, a static import library can be used so that functions in the dll can be called directly, rather than needing to be loaded by name</li> <li>Instead of a regular import library, you could have a wrapper library that wraps the dll's C functions in C++ classes and functions</li> </ul> http://stackoverflow.com/questions/920355/how-do-i-clone-a-sub-folder-of-a-repository-in-mercurial 4 How do I clone a sub-folder of a repository in Mercurial? James Hopkin 2009-05-28T11:18:47Z 2009-06-06T03:51:33Z <p>I have a Mercurial repository containing a handful of related projects. I want to branch just one of these projects to work on it elsewhere.</p> <p>Is cloning just part of a repository possible, and is that the right way to achieve this?</p> http://stackoverflow.com/questions/102459/why-does-stdstack-use-stddeque-by-default/102859#102859 Comment by James Hopkin on Why does std::stack use std::deque by default? James Hopkin 2009-09-14T15:21:36Z 2009-09-14T15:21:36Z Thanks - missed this comment originally http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006087#1006087 Comment by James Hopkin on How to detect whether there is a specific member variable in class? James Hopkin 2009-09-14T11:49:25Z 2009-09-14T11:49:25Z Thanks - got it now. Trying to compile 'void f(int n=0); void f(...); void test() { f(); }' proves your point pretty quickly! IIUC, the code in my answer should fail to compile due to the first call being ambiguous (and indeed it does on Comeau). http://stackoverflow.com/questions/1016928/is-there-any-direct-way-to-do-what-pinptr-does/1110263#1110263 Comment by James Hopkin on Is there any direct way to do what pin_ptr does? James Hopkin 2009-07-15T09:00:58Z 2009-07-15T09:00:58Z Thanks, I'll give that a go when I get a chance. http://stackoverflow.com/questions/1124634/c-call-destructor-and-then-constructor-resetting-an-object/1124651#1124651 Comment by James Hopkin on C++: Call destructor and then constructor (resetting an object) James Hopkin 2009-07-14T11:02:45Z 2009-07-14T11:02:45Z +1: Good point about exception safety http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357 Comment by James Hopkin on Name resolution in templates James Hopkin 2009-07-14T10:59:26Z 2009-07-14T10:59:26Z By 'hard to implement' btw, I'm thinking that the compiler has to keep track of all the fs that were defined until g's definition point so that it can pick the right one when it's instantiated with a built-in type. http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357 Comment by James Hopkin on Name resolution in templates James Hopkin 2009-07-14T10:57:35Z 2009-07-14T10:57:35Z That's true, but I think it's an inconsistency that doesn't buy very much. I can't think of any sane examples where you'd overload an existing template function for a built-in type. http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357 Comment by James Hopkin on Name resolution in templates James Hopkin 2009-07-14T09:50:09Z 2009-07-14T09:50:09Z If I've read the DR correctly, it seems they've gone for a 'quick fix' - make the example fit the wording - but actually the behaviour is inconsistent, and I'd guess hard to implement. http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357 Comment by James Hopkin on Name resolution in templates James Hopkin 2009-07-14T09:36:53Z 2009-07-14T09:36:53Z Excellent - I hadn't read that defect report. It's a little more subtle than I thought. http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1097558#1097558 Comment by James Hopkin on Name resolution in templates James Hopkin 2009-07-14T09:29:44Z 2009-07-14T09:29:44Z @litb: I should have been more specific about which bit of the article I was talking about (I didn't read it all in detail). Amended my answer now. http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1080514#1080514 Comment by James Hopkin on Preventing invoking C types from Python James Hopkin 2009-07-06T10:35:49Z 2009-07-06T10:35:49Z I'm going to give this a try. +1 for now - I'll acccept the answer when I've given it a test. http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1079981#1079981 Comment by James Hopkin on Preventing invoking C types from Python James Hopkin 2009-07-06T10:34:25Z 2009-07-06T10:34:25Z Just to slightly explain further: really it's just a case of an type that doesn't make sense to be invoked from Python, since it needs resources only the C library can provide. Currently my code will crash if an uninitialised instance's method is called. One option I have is to keep an 'initialised' member, and raise an exception in every method if it's false. I'm looking for alternatives, partly to get the earliest warning to the user. http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1080330#1080330 Comment by James Hopkin on Preventing invoking C types from Python James Hopkin 2009-07-06T09:29:21Z 2009-07-06T09:29:21Z I wouldn't call having my library crash the interpreter 'bulletproof' :-) http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python Comment by James Hopkin on Preventing invoking C types from Python James Hopkin 2009-07-03T16:24:14Z 2009-07-03T16:24:14Z @Lennart: Agreed. Perhaps my tp_init exception is enough. I'm curious if there's a more bulletproof way. I fully expected to receive the answer: 'don't do it' ;-). http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1079981#1079981 Comment by James Hopkin on Preventing invoking C types from Python James Hopkin 2009-07-03T16:14:29Z 2009-07-03T16:14:29Z I'm not sure what you mean by not exporting the type. I want the type to be usable, just only created from C. http://stackoverflow.com/questions/1063037/how-can-i-make-a-list-of-files-modification-dates-and-paths Comment by James Hopkin on How can I make a list of files, modification dates and paths? James Hopkin 2009-06-30T11:02:31Z 2009-06-30T11:02:31Z None of those links answer the modification time part of the question.