Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Going out of my mind over here. I have a script where I'm parsing a folder full of tifs, and breaking the files up into sub-folders to limit the number of pages to around 60 per folder. If a document is very large it gets its own folder.

The problem is that the process is locking up the files, so they cannot be deleted. Not every file though, most of them work fine, and my end clean-up portion of the script gets rid of everything else.

I wrote a lot of work-around sections to my code to fix this issue, and now it is pretty bad looking

    #Large Documents
Get-ChildItem -Path "$directory" -recurse -filter "*.tif" | foreach {
    $file = [System.Drawing.Bitmap]::FromFile($_.Fullname);
    $pagecount = $file.GetFrameCount($file.FrameDimensionsList[0]); 
    if ($pagecount -gt $MaxSize){
        $total = $total + $pagecount;
        $name = $_.Basename;
        New-Item $name -ItemType directory;
        Copy-Item $_.fullname -Destination $name;
        #Copy-Item $name".DS" -Destination $processingDir;
        Write-Host "Sleeping in large doc loop";
        $file.Dispose;
        Write-Host "Dispose file object";
        Write-Host $_.Fullname
        $storename = $_.Fullname
        $largeFiles = $largeFiles + $storename      
        Write-Host "Storing to array: " $largeFiles[$index];
        $index = $index + 1;
        sleep(15);
    }
}
while ($delInd -lt $largeFiles.Count){
    Write-Host "Deleting: " $largeFiles[$delInd];
    Remove-Item $largeFiles[$delInd] -Force;
    $delInd = $delInd + 1;
}

I'm absolutely perplexed by this. Any help is greatly appreciated. I'm very new to Powershell, so it's likely there are other things I'm not doing well.

share|improve this question
1  
Locking may be done by file indexer or by antivirus. Try SysInternals tools (for example, Handles.exe -- technet.microsoft.com/en-us/sysinternals/bb896655.aspx) to see what processes are using the files. – jdigital Nov 13 '12 at 23:34
Are you receiving an error message? If so, post it up on here. – D3vtr0n Nov 14 '12 at 15:51

1 Answer

up vote 2 down vote accepted

As far as I understand with $file.Dispose you do not force underlying object to close the file. Dispose is a method and, in PowerShell (like in C#), to invoke a method you have to use (). So try $file.Dispose().

piece of advice : you can avoid ; at the end of the lines

share|improve this answer
Well don't I feel stupid now. Thanks JPBlanc – bwasson Nov 14 '12 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.