Click here to Skip to main content
15,893,588 members
Home / Discussions / C#
   

C#

 
JokeRe: project Pin
Nagy Vilmos11-Mar-09 23:57
professionalNagy Vilmos11-Mar-09 23:57 
AnswerRe: project Pin
Xmen Real 12-Mar-09 0:04
professional Xmen Real 12-Mar-09 0:04 
AnswerRe: project Pin
Yusuf12-Mar-09 1:22
Yusuf12-Mar-09 1:22 
AnswerRe: project Pin
Ihtesham12-Mar-09 1:26
Ihtesham12-Mar-09 1:26 
RantRe: project Pin
0x3c012-Mar-09 1:37
0x3c012-Mar-09 1:37 
AnswerRe: project Pin
Michael Bookatz12-Mar-09 2:29
Michael Bookatz12-Mar-09 2:29 
AnswerRe: project Pin
Zhat12-Mar-09 2:37
Zhat12-Mar-09 2:37 
QuestionHow to check if extensions follows up in a list? Pin
Matjaz-xyz11-Mar-09 23:31
Matjaz-xyz11-Mar-09 23:31 
QuestionRe: How to check if extensions follows up in a list? Pin
Goobashi11-Mar-09 23:34
Goobashi11-Mar-09 23:34 
AnswerRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz11-Mar-09 23:40
Matjaz-xyz11-Mar-09 23:40 
QuestionRe: How to check if extensions follows up in a list? Pin
Goobashi11-Mar-09 23:39
Goobashi11-Mar-09 23:39 
AnswerRe: How to check if extensions follows up in a list? Pin
dan!sh 12-Mar-09 0:11
professional dan!sh 12-Mar-09 0:11 
GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 0:20
Matjaz-xyz12-Mar-09 0:20 
GeneralRe: How to check if extensions follows up in a list? Pin
dan!sh 12-Mar-09 0:26
professional dan!sh 12-Mar-09 0:26 
GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 0:36
Matjaz-xyz12-Mar-09 0:36 
GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 1:44
Matjaz-xyz12-Mar-09 1:44 
GeneralRe: How to check if extensions follows up in a list? Pin
dan!sh 12-Mar-09 2:21
professional dan!sh 12-Mar-09 2:21 
GeneralRe: How to check if extensions follows up in a list? Pin
Luc Pattyn12-Mar-09 3:33
sitebuilderLuc Pattyn12-Mar-09 3:33 
AnswerRe: How to check if extensions follows up in a list? Pin
Xmen Real 12-Mar-09 0:14
professional Xmen Real 12-Mar-09 0:14 
GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 0:22
Matjaz-xyz12-Mar-09 0:22 
GeneralRe: How to check if extensions follows up in a list? Pin
Xmen Real 12-Mar-09 0:27
professional Xmen Real 12-Mar-09 0:27 
its simple then...

try this

bool Test(string dirPath)
{
    string[] filePaths = Directory.GetFiles(dirPath, "*.jpg");
    for (int a = 0; a < filePaths.Length; a++)
    {
        if (!File.Exists(Path.Combine(dirPath, Path.GetFileNameWithoutExtension(filePaths[a]) + ".tif")))
            return false;
    }
    return true;
}


TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-i’TV.C\y<pŠjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can

GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 0:30
Matjaz-xyz12-Mar-09 0:30 
GeneralRe: How to check if extensions follows up in a list? Pin
dan!sh 12-Mar-09 0:33
professional dan!sh 12-Mar-09 0:33 
GeneralRe: How to check if extensions follows up in a list? Pin
Matjaz-xyz12-Mar-09 0:35
Matjaz-xyz12-Mar-09 0:35 
GeneralRe: How to check if extensions follows up in a list? Pin
Xmen Real 12-Mar-09 0:35
professional Xmen Real 12-Mar-09 0:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.