Many times I manually have to check several houndreds icon hints. All
of those files are audio files - strictly only mp3 extension. While
doing this, I have in purpose to find (if it/they even exist) the
files where their icon hints does NOT ( ! ) show the ''Duration'' line
with data. But moving the cursor on each icon can be very annoying,
specially if you have many of them. Files are located in many
subfolders with lets say maximum 10 files in each of the subfolder so
detail folder's view option won't be useful. I have also been trying
to do this in Magic File Renamer but I haven't found the correct
function in it yet.
I heard that MS consultants has some kind of C code for it, however I
don't have a compiler so I would prefer the .exe file but I would be
more than happy with just the code too.
Hope someone could help
Thank you.
> Many times I manually have to check several houndreds icon hints. All
> of those files are audio files - strictly only mp3 extension. While
> doing this, I have in purpose to find (if it/they even exist) the
> files where their icon hints does NOT ( ! ) show the ''Duration'' line
> with data.
ILCreateFromPath()
SHBindToParent() to IShellFolder2
IShellFolder2::GetDetailsEx() to get PSGUID_AUDIO & PIDASI_TIMELENGTH
for duration
These are just the Win32 apis/interfaces that you have to call in C++
for example...
// Duration.h
#pragma once
using namespace System;
namespace Duration {
public ref class Class1
{
};